Tes API endpoint
Use Crawlora's Search Tes teaching jobs API to extract supported public Tes data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/tes/jobs/searchSearches Tes's (tes.com) teaching-jobs board. Returns normalized listing facts (title, employer, location, salary, contract terms/types) plus a short excerpt of the listing description, not the full long-form job-description copy, and the same live faceted-search breakdown (position/subject/workplace category trees with counts, plus contract type/term counts) the real search page renders as its filter sidebar. location is a free-text place name (a UK town/city, an international city, or a bare country name) resolved to coordinates via Tes's own location-autocomplete endpoint; omit for Tes's own default market, "United Kingdom". radius_miles selects the search radius around location. contract_type and contract_term are validated against Tes's own small, closed label sets. position, subject, and workplace are comma-separated passthrough filters -- Tes's own category labels are numerous and can change, so read a prior response's own facets.positions[].value (and facets.positions[].children[].value)/facets.subjects[].value/facets.workplaces[].children[].value for the live, current set rather than guessing. salary_min filters to jobs with an advertised salary at or above that amount (in the searched market's local currency); Tes's own filter panel offers only a minimum, no maximum. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| keywords | string | No | Job title or keyword | ||
| location | string | No | Free-text place name resolved via Tes's own location autocomplete | ||
| radius_miles | integer | No | Search radius around location, in miles Allowed values: 3, 5, 10, 15, 20, 30, 50, 70, 100, 500 | ||
| page | integer | No | One-based page Minimum: 1. Maximum: 500. | ||
| page_size | integer | No | Results per page Minimum: 1. Maximum: 50. | ||
| sort | string | No | Sort order Allowed values: relevance, newest, distance | ||
| contract_type | string | No | Contract type Allowed values: Full Time, Part Time | ||
| contract_term | string | No | Contract term Allowed values: Permanent, Fixed Term, Casual, Maternity Cover, Temporary, Supply | ||
| position | string | No | Comma-separated position category label(s) -- see the endpoint markdown | ||
| subject | string | No | Comma-separated subject label(s) -- see the endpoint markdown | ||
| workplace | string | No | Comma-separated workplace/organisation-type label(s) -- see the endpoint markdown | ||
| salary_min | integer | No | Minimum advertised salary, in the searched market's local currency Minimum: 0. | ||
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/tes/jobs/search?radius_miles=3&page=1&sort=relevance&contract_type=Full+Time&contract_term=Permanent" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
Some targets require real browser execution because the data is loaded through JavaScript, dynamic rendering, or interaction-like browser behavior.
For supported endpoints, Crawlora can route requests through a managed browser cluster. This allows Crawlora to execute JavaScript, load dynamic content, apply browser-level request behavior, and normalize the rendered result into JSON.
You do not need to operate your own Playwright, Puppeteer, Chrome, proxy, queue, or retry infrastructure.
- `total` is the upstream's true result count across all pages, not just the current page's length. - `location` in the response is the resolved place name actually searched (Tes's own canonical name for the match, which may differ slightly from what was passed in). - `facets` is the same live faceted-search breakdown Tes's own search page renders as its filter sidebar: `positions`, `subjects`, and `workplaces` are category trees (a `children` array nests subcategories), while `contract_types` and `contract_terms` are flat. Every facet entry carries its own live `count` under the current query and filters already applied -- use these to discover valid `position`/`subject`/`workplace` values rather than guessing. - An unrecognized `position`/`subject`/`workplace` value narrows to zero results rather than erroring, matching Tes's own upstream behavior for an unknown filter. - `employer_logo_url` is empty when the employer hasn't uploaded a logo. Example response: ```json { "code": 200, "msg": "OK", "data": { "keywords": "teacher", "location": "United Kingdom", "page": 1, "page_size": 20, "total": 1504, "jobs": [ { "id": "2340998", "title": "Minibus Driver", "url": "https://www.tes.com/jobs/vacancy/minibus-driver-epsom-2340998", "employer": "Epsom College", "employer_logo_url": "https://l.imgt.es/employer-assets/employers/1039424/brandimages/20181030_1126AM_desktop_1039424_logo.jpg", "location": "Epsom", "salary": "£11,956 per year", "contract_terms": ["Permanent"], "contract_types": ["Part Time"], "short_description": "Epsom College is an independent co educational day and boarding school...", "closing_date": "2026-09-29T23:00:00.000Z" } ], "facets": { "positions": [ { "value": "Teaching and Lecturing", "count": 713, "children": [ {"value": "Cover Supervisor", "count": 120} ] } ], "subjects": [ {"value": "Mathematics", "count": 200} ], "workplaces": [ { "value": "Workplaces", "count": 1000, "children": [ {"value": "Secondary", "count": 400} ] } ], "contract_types": [ {"value": "Full Time", "count": 1036}, {"value": "Part Time", "count": 577} ], "contract_terms": [ {"value": "Permanent", "count": 1192}, {"value": "Fixed Term", "count": 161} ] } } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"keywords": "teacher",
"location": "United Kingdom",
"page": 1,
"page_size": 20,
"total": 1504,
"jobs": [
{
"id": "2340998",
"title": "Minibus Driver",
"url": "https://www.tes.com/jobs/vacancy/minibus-driver-epsom-2340998",
"employer": "Epsom College",
"employer_logo_url": "https://l.imgt.es/employer-assets/employers/1039424/brandimages/20181030_1126AM_desktop_1039424_logo.jpg",
"location": "Epsom",
"salary": "£11,956 per year",
"contract_terms": [
"Permanent"
],
"contract_types": [
"Part Time"
],
"short_description": "Epsom College is an independent co educational day and boarding school...",
"closing_date": "2026-09-29T23:00:00.000Z"
}
],
"facets": {
"positions": [
{
"value": "Teaching and Lecturing",
"count": 713,
"children": [
{
"value": "Cover Supervisor",
"count": 120
}
]
}
],
"subjects": [
{
"value": "Mathematics",
"count": 200
}
],
"workplaces": [
{
"value": "Workplaces",
"count": 1000,
"children": [
{
"value": "Secondary",
"count": 400
}
]
}
],
"contract_types": [
{
"value": "Full Time",
"count": 1036
},
{
"value": "Part Time",
"count": 577
}
],
"contract_terms": [
{
"value": "Permanent",
"count": 1192
},
{
"value": "Fixed Term",
"count": 161
}
]
}
}
}Request schema
No body schema
Response schema
#/definitions/tes.jobSearchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | tes.JobSearchResponse | No | ||||
| data.facets | unknown | No | Facets is the same live faceted-search breakdown tes.com's own search page renders as its filter sidebar (position/subject/workplace category trees plus contract type/term counts), so a caller can discover exact Position/Subject/Workplace filter values without guessing. Counts reflect the query and other filters already applied. | |||
| data.jobs | array | No | ||||
| data.jobs[].closing_date | string | No | ||||
| data.jobs[].contract_terms | array | No | ||||
| data.jobs[].contract_types | array | No | ||||
| data.jobs[].employer | string | No | ||||
| data.jobs[].employer_logo_url | string | No | ||||
| data.jobs[].id | string | No | ||||
| data.jobs[].location | string | No | ||||
| data.jobs[].salary | string | No | ||||
| data.jobs[].short_description | string | No | ||||
| data.jobs[].title | string | No | ||||
| data.jobs[].url | string | No | ||||
| data.keywords | string | No | ||||
| data.location | string | No | ||||
| data.page | integer | No | ||||
| data.page_size | integer | No | ||||
| data.total | integer | No | ||||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/tes/jobs/search?radius_miles=3&page=1&sort=relevance&contract_type=Full+Time&contract_term=Permanent" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms