Endpoint Playground
Test Crawlora's Search the Tes Schools Directory API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/tes/schools/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | Yes | School name or location | |
| page | integer | No | One-based page | |
| page_size | integer | No | Results per page |
{
"code": 200,
"msg": "OK",
"data": {
"query": "Epsom",
"page": 1,
"page_size": 20,
"total_pages": 1,
"total": 6,
"schools": [
{
"id": "1039424",
"name": "Epsom College",
"url": "https://www.tes.com/jobs/employer/epsom-college-1039424",
"logo_url": "https://d2yw9izrmawh7r.cloudfront.net/employers/1039424/brandimages/20181030_1126AM_desktop_1039424_logo.jpg",
"description": "The College has grown significantly in the past seven years.",
"address": "College Road",
"country": "United Kingdom",
"post_code": "KT17 4JQ"
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Searches Tes's (tes.com) public Schools Directory by school name or location. Returns normalized listing facts (name, logo, a short description, address) for each matching school/employer. Each result's id is the same employer id tes-job-employer accepts, so a caller can go straight from a name/location search to a full employer profile (school type/phase/funding status/gender/age range, and its currently-open positions) without first needing a job posting to discover the id.
{
"code": 200,
"msg": "OK",
"data": {
"query": "Epsom",
"page": 1,
"page_size": 20,
"total_pages": 1,
"total": 6,
"schools": [
{
"id": "1039424",
"name": "Epsom College",
"url": "https://www.tes.com/jobs/employer/epsom-college-1039424",
"logo_url": "https://d2yw9izrmawh7r.cloudfront.net/employers/1039424/brandimages/20181030_1126AM_desktop_1039424_logo.jpg",
"description": "The College has grown significantly in the past seven years.",
"address": "College Road",
"country": "United Kingdom",
"post_code": "KT17 4JQ"
}
]
}
}curl "https://api.crawlora.net/api/v1/tes/schools/search?query=<query>" \
-H "x-api-key: $CRAWLORA_API_KEY"