Skip to main content
GET
/
v3
/
search
Global Search
curl --request GET \
  --url https://app.plugchoice.com/api/v3/search \
  --header 'Authorization: Bearer <token>'
{
  "chargers": [
    {
      "uuid": "<string>",
      "identity": "<string>",
      "connection_status": "<string>",
      "blocked": true,
      "permissions": {}
    }
  ],
  "locations": [
    {
      "uuid": "<string>",
      "name": "<string>",
      "city": "<string>",
      "permissions": {}
    }
  ]
}
Searches across chargers and locations accessible to the authenticated user. Results can optionally be scoped to a specific team.
query
string
required
The search query. Must be at least 2 characters and no more than 255 characters.
team_uuid
string
Filter results to a specific team by UUID.
limit
integer
Maximum number of results per type. Must be between 1 and 25. Defaults to 10.

Response

chargers
array
Array of matching charger objects.
locations
array
Array of matching location objects.