Endpoint Playground
Test Crawlora's Get a Tes teaching job 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/jobs/detail?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | string | Yes | Tes job id |
{
"code": 200,
"msg": "OK",
"data": {
"id": "2340998",
"title": "Minibus Driver",
"url": "https://www.tes.com/jobs/vacancy/minibus-driver-epsom-2340998",
"employer": "Epsom College",
"employer_url": "https://www.tes.com/jobs/employer/epsom-college-1039424",
"employer_website": "http://www.epsomcollege.org.uk",
"employer_logo_url": "https://l.imgt.es/employer-assets/employers/1039424/brandimages/20181030_1126AM_desktop_1039424_logo.jpg",
"employer_header_url": "https://l.imgt.es/employer-assets/employers/1039424/brandimages/20160908_1226PM_desktop_1039424_header.jpg",
"location": "Epsom",
"salary": "£11,956 per year",
"contract_terms": [
"Permanent"
],
"contract_types": [
"Part Time"
],
"description_excerpt": "Epsom College is an independent co educational day and boarding school with approximately 1100 pupils...",
"posted_date": "2026-08-31T23:00:00.000Z",
"closing_date": "2026-09-29T23:00:00.000Z",
"application_url": "https://www.epsomcollege.org.uk/vacancies/minibus-driver/",
"application_email": "hr.recruitment@epsomcollege.org.uk",
"quick_apply": false
}
}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.
Returns normalized detail for one job posting by its numeric id (the id field returned by tes-job-search): employer, location, salary, contract terms/types, dates, and application contact/URL, plus a short excerpt of the listing description rather than the full long-form HTML copy.
{
"code": 200,
"msg": "OK",
"data": {
"id": "2340998",
"title": "Minibus Driver",
"url": "https://www.tes.com/jobs/vacancy/minibus-driver-epsom-2340998",
"employer": "Epsom College",
"employer_url": "https://www.tes.com/jobs/employer/epsom-college-1039424",
"employer_website": "http://www.epsomcollege.org.uk",
"employer_logo_url": "https://l.imgt.es/employer-assets/employers/1039424/brandimages/20181030_1126AM_desktop_1039424_logo.jpg",
"employer_header_url": "https://l.imgt.es/employer-assets/employers/1039424/brandimages/20160908_1226PM_desktop_1039424_header.jpg",
"location": "Epsom",
"salary": "£11,956 per year",
"contract_terms": [
"Permanent"
],
"contract_types": [
"Part Time"
],
"description_excerpt": "Epsom College is an independent co educational day and boarding school with approximately 1100 pupils...",
"posted_date": "2026-08-31T23:00:00.000Z",
"closing_date": "2026-09-29T23:00:00.000Z",
"application_url": "https://www.epsomcollege.org.uk/vacancies/minibus-driver/",
"application_email": "hr.recruitment@epsomcollege.org.uk",
"quick_apply": false
}
}curl "https://api.crawlora.net/api/v1/tes/jobs/detail?id=<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"