For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Dashboard
DocsAPI Reference
Dashboard
LogoLogo
DocsAPI Reference
  • OCPPLAB Gateway API
        • GETList locations
        • POSTCreate location
        • GETGet location
        • PUTUpdate location
        • DELDelete location
OCPPLAB Gateway APICore ResourcesLocations

List locations

||View as Markdown|
GET
https://host.com/ocpp/locations
GET
/ocpp/locations
1import requests
2
3url = "https://host.com/ocpp/locations"
4
5headers = {"Authorization": "Bearer <token>"}
6
7response = requests.get(url, headers=headers)
8
9print(response.json())
1{
2 "data": [
3 {
4 "id": "4090477f-a416-4515-a302-97aa344a0a2a",
5 "slug": "paris-la-defense-hub-a1b2c3d4",
6 "name": "La Defense Charging Hub",
7 "address": "14 Rue de la Paix",
8 "city": "Paris",
9 "country": "FR",
10 "coordinates": {
11 "latitude": 48.8566,
12 "longitude": 2.3522
13 },
14 "timezone": "Europe/Paris",
15 "owner_name": "VINCI Autoroutes",
16 "public": true,
17 "status": "active",
18 "created_at": "2026-04-02T09:15:00Z",
19 "updated_at": "2026-04-02T09:15:00Z"
20 }
21 ],
22 "total": 1,
23 "page": 1,
24 "limit": 50
25}

Retrieve tenant-scoped charging locations with pagination.

Was this page helpful?
Previous

Get catalog brand model

Next

Create location

Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

pageintegerOptional>=1Defaults to 1

One-based page number for paginated location results.

limitintegerOptional1-100Defaults to 50
Maximum number of locations to return per page. The maximum accepted value is 100.

Response

Locations retrieved successfully
datalist of objects
totalinteger
pageinteger
limitinteger

Errors

401
Unauthorized Error
403
Forbidden Error
422
Unprocessable Entity Error
500
Internal Server Error