Skip to main content
GET
/
api
/
v3
/
sites
List sites
curl --request GET \
  --url https://app.plugchoice.com/api/v3/sites \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "team": "architecto",
  "search": "architecto"
}
'
{
  "data": [
    {
      "uuid": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
      "id": 1,
      "name": "Okuneva, Rempel and Gulgowski",
      "address": null,
      "street": "Ernser Parkways",
      "postal_code": "64698-0841",
      "house_number": 1582,
      "house_number_addition": "Apt. 196",
      "city": "Port Gilbertstad",
      "country": "ME",
      "smart_charging": "disabled",
      "chargers_count": 0,
      "capabilities": {
        "smart_charging": false,
        "load_management": {
          "dynamic": true,
          "peak_shaving": false,
          "solar": false
        }
      },
      "created_at": "2026-01-10T01:14:32.000000Z",
      "updated_at": "2026-01-10T01:14:32.000000Z",
      "permissions": {
        "basic": false,
        "sensitive": false,
        "full": false
      }
    },
    {
      "uuid": "d03cceb8-0e59-3c26-8133-808072ac8a4c",
      "id": 2,
      "name": "Dare Group",
      "address": null,
      "street": "Leo Pine",
      "postal_code": "21627",
      "house_number": 77365,
      "house_number_addition": "Apt. 066",
      "city": "Trompmouth",
      "country": "RS",
      "smart_charging": "disabled",
      "chargers_count": 0,
      "capabilities": {
        "smart_charging": false,
        "load_management": {
          "dynamic": true,
          "peak_shaving": false,
          "solar": false
        }
      },
      "created_at": "2026-01-10T01:14:32.000000Z",
      "updated_at": "2026-01-10T01:14:32.000000Z",
      "permissions": {
        "basic": false,
        "sensitive": false,
        "full": false
      }
    }
  ],
  "links": {
    "first": "/?page=1",
    "last": null,
    "prev": null,
    "next": null
  },
  "meta": {
    "current_page": 1,
    "current_page_url": "/?page=1",
    "from": 1,
    "path": "/",
    "per_page": 25,
    "to": 2
  }
}

Authorizations

Authorization
string
header
required

See the documentation for more information.

Body

application/json
team
string | null
Example:

"architecto"

search
string | null
Example:

"architecto"

Response

200 - application/json
data
object[]
Example:
[
{
"uuid": "a4855dc5-0acb-33c3-b921-f4291f719ca0",
"id": 1,
"name": "Okuneva, Rempel and Gulgowski",
"address": null,
"street": "Ernser Parkways",
"postal_code": "64698-0841",
"house_number": 1582,
"house_number_addition": "Apt. 196",
"city": "Port Gilbertstad",
"country": "ME",
"smart_charging": "disabled",
"chargers_count": 0,
"capabilities": {
"smart_charging": false,
"load_management": {
"dynamic": true,
"peak_shaving": false,
"solar": false
}
},
"created_at": "2026-01-10T01:14:32.000000Z",
"updated_at": "2026-01-10T01:14:32.000000Z",
"permissions": {
"basic": false,
"sensitive": false,
"full": false
}
},
{
"uuid": "d03cceb8-0e59-3c26-8133-808072ac8a4c",
"id": 2,
"name": "Dare Group",
"address": null,
"street": "Leo Pine",
"postal_code": "21627",
"house_number": 77365,
"house_number_addition": "Apt. 066",
"city": "Trompmouth",
"country": "RS",
"smart_charging": "disabled",
"chargers_count": 0,
"capabilities": {
"smart_charging": false,
"load_management": {
"dynamic": true,
"peak_shaving": false,
"solar": false
}
},
"created_at": "2026-01-10T01:14:32.000000Z",
"updated_at": "2026-01-10T01:14:32.000000Z",
"permissions": {
"basic": false,
"sensitive": false,
"full": false
}
}
]
meta
object