Access Caribbean education datasets programmatically via our RESTful API.
The Edu-Search Caribbean Data API provides programmatic access to our collection of educational datasets. All endpoints return JSON responses and support CORS for browser-based applications.
Base URL
https://demo.edusearchcaribbean.com/api/public/datasetsCurrently, all API endpoints are publicly accessible and do not require authentication. Rate limiting may apply to prevent abuse.
/Retrieve a list of all publicly available datasets with pagination support.
limitNumber of results (default: 50, max: 100)offsetStarting position (default: 0)countryFilter by country namedataset_typeFilter by type (microdata, indicators, aggregated)access_typeFilter by access (open, restricted, licensed)curl "https://demo.edusearchcaribbean.com/api/public/datasets?limit=10&country=Jamaica"{
"datasets": [
{
"id": "uuid",
"title": "Caribbean Education Indicators 2023",
"slug": "education-indicators-2023",
"type": "dataset",
"abstract": "...",
"publication_date": "2023-12-01",
"datasets": {
"dataset_type": "indicators",
"access_type": "open",
"api_enabled": true
}
}
],
"count": 15,
"limit": 10,
"offset": 0
}200Success404Resource not found403Access forbidden (API not enabled for dataset)500Internal server errorFor questions about the API or to request additional features, please contact us at api@edusearchcaribbean.com