AI and agent interfaces
This page is the entry point for AI systems, agents and developers who want to use Nomado24 as a data source rather than read it as a website. Every interface is public, needs no key, and is free to use with attribution.
Why this page exists
The machine-readable files are plain text. Search systems do not reliably index plain text as a standalone document, so an agent that discovers sources through search only ever meets our normal pages. This page is therefore deliberately an ordinary, indexable HTML document that names every interface.
Interfaces at a glance
Only interfaces that answer right now are listed. Planned endpoints appear here once they ship, not before.
| Interface | Address | What it is for |
|---|---|---|
| Methodology | www.nomado24.de/en/developers/methodology | How the job data is produced: sources, classification, salary provenance, freshness, and what we deliberately do not assert. |
| llms.txt | www.nomado24.de/llms.txt | Compact map of every interface and the pages that matter. |
| llms-full.txt | www.nomado24.de/llms-full.txt | Extended knowledge base with company facts and the full FAQ. |
| REST API | api.nomado24.de/api/public/v1/jobs | Current job listings as JSON, no key, with full-text search and a language filter. |
| OpenAPI 3.1 | www.nomado24.de/openapi.yaml | Machine-readable contract for the REST API, suitable for client generation. |
| MCP server | api.nomado24.de/api/public/v1/mcp | Model Context Protocol over Streamable HTTP, so an agent can search directly. |
| MCP registry entry | raw.githubusercontent.com/AntonPetuchow/nomado24-mcp/main/server.json | Registry entry with server name, version and endpoint. |
| MCP discovery manifest | www.nomado24.de/.well-known/mcp/server.json | Machine-readable description of the server at /.well-known/mcp/server.json: endpoint, headers, rate limit and the parameter schema of all three tools. |
| Statistics dataset | www.nomado24.de/remote-jobs-statistik.json | Live market figures as JSON, with collection timestamp and licence. |
| Report dataset | www.nomado24.de/remote-arbeitsmarkt-2026-08.json | Frozen monthly figures of the current data report as JSON. |
| Report as Markdown | www.nomado24.de/remote-arbeitsmarkt-2026-08-en.md | The same report as structured text, cheap in tokens. |
| Jobs feed | www.nomado24.de/jobs.xml | Newest indexable listings as RSS, the simplest integration there is. |
| Sitemap | www.nomado24.de/sitemap.xml | Every indexable URL across all locales. |
Connect the MCP server
The MCP server speaks Streamable HTTP and needs no auth. It is registered as de.nomado24/jobs. It currently exposes three tools: search_jobs (free text plus structured filters such as country, applicant region, work arrangement, employment type, seniority, skills and salary bounds), get_job (one posting with its full data provenance) and get_job_statistics.
{
"mcpServers": {
"nomado24": {
"type": "streamable-http",
"url": "https://api.nomado24.de/api/public/v1/mcp"
}
}
}REST API in one line
Every request is a GET and returns JSON. The full parameter list lives in the developer documentation and in the OpenAPI file.
curl "https://api.nomado24.de/api/public/v1/jobs?q=react&language=en&per_page=20"Citable market data
The data reports are frozen monthly snapshots with an as-of date, a methodology and a licence. Each comes in three forms: a page for humans, JSON for the figures, and Markdown for language models.
- The German Remote Job Market: August 2026PageJSONMarkdown
- Remote Work in Germany 2026: Data, Salaries, Cities and TrendsPageMarkdown
Reading freshness correctly
Job listings change daily. Live figures come from the statistics interface, which ships its own collection timestamp. The reports carry a fixed as-of date instead, so a quoted figure is still verifiable half a year later. Do not confuse the two.
Attribution and licence
The data reports and statistics datasets are published under CC BY 4.0. The jobs API is free to use as long as a visible link points back to nomado24.de. Please credit "Nomado24 (nomado24.de)" and link the page a figure came from.
