Welcome to the Shropshire API. This API provides access to information about services, organizations, locations, and reviews in Shropshire.
https://api.shropshire.dev.docandtee.com/api/v2
API requests are limited to 60 requests per minute.
/services
List all services with optional filtering and pagination.
{
"content": [
{
"id": "uuid",
"name": "Service Name",
"description": "Service Description",
"url": "https://example.com",
"email": "contact@example.com",
"status": "active",
"fees": "Free",
"accreditations": ["ISO 9001"],
"assured_date": "2024-01-01T00:00:00Z",
"contacts": [...],
"organization": {...},
"service_areas": [...],
"service_at_locations": [...]
}
],
"empty": false,
"first": true,
"last": false,
"number": 1,
"numberOfElements": 50,
"size": 50,
"totalElements": 5020,
"totalPages": 101,
"pageable": {
"offset": 0,
"pageNumber": 1,
"pageSize": 50,
"paged": true,
"unpaged": false
},
"sort": {
"empty": false,
"sorted": true,
"unsorted": false
}
}
/services/{id}
Get details of a specific service by ID.
/services/map-clusters
Get service clusters for map visualization.
/services/cluster/{geohash}
Get services within a specific map cluster.
/organizations
List all organizations with optional filtering.
/organizations/{id}
Get details of a specific organization by ID.
/locations
List all locations with optional filtering.
/locations/{id}
Get details of a specific location by ID.
/reviews
List all reviews with optional filtering.
/reviews/{id}
Get details of a specific review by ID.
Error responses include:
message - Error descriptionerrors - Validation errors (if applicable)For API support or questions, please contact the development team.