Services and companies are located in this locations.
Use the id field as parameter for other queries
GET /api/v1/continents { "token": "valid_token" } 200 { "results": [ { "id": "america", "name": "America", "regions": [ { "id": "caribbean", "name": "Caribbean" }, { "id": "north-america", "name": "North America" }, { "id": "south-america", "name": "South America" } ] }, { "id": "europe", "name": "Europe", "regions": [ { "id": "east-europe", "name": "East Europe" }, { "id": "west-europe", "name": "West Europe" } ] } ] }
GET /api/v1/continents { "token": "invalid_token" } 401 { "error": "unauthorized" }