GPS tracking server API documentation.
iTransfer (5.0)
Download OpenAPI description
Overview
Languages
Servers
Demo Server 1
https://demo.traccar.org/api
- Demo Server 1https://demo.traccar.org/api/groups
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
-u <username>:<password> \
'https://demo.traccar.org/api/groups?all=true&userId=0'Response
application/json
[ { "id": 0, "name": "string", "groupId": 0, "attributes": {} } ]
- Demo Server 1https://demo.traccar.org/api/groups
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
-u <username>:<password> \
https://demo.traccar.org/api/groups \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"name": "string",
"groupId": 0,
"attributes": {}
}'Response
application/json
{ "id": 0, "name": "string", "groupId": 0, "attributes": {} }
- Demo Server 1https://demo.traccar.org/api/groups/{id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X PUT \
-u <username>:<password> \
'https://demo.traccar.org/api/groups/{id}' \
-H 'Content-Type: application/json' \
-d '{
"id": 0,
"name": "string",
"groupId": 0,
"attributes": {}
}'Response
application/json
{ "id": 0, "name": "string", "groupId": 0, "attributes": {} }