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.

InterfaceAddressWhat it is for
Methodologywww.nomado24.de/en/developers/methodologyHow the job data is produced: sources, classification, salary provenance, freshness, and what we deliberately do not assert.
llms.txtwww.nomado24.de/llms.txtCompact map of every interface and the pages that matter.
llms-full.txtwww.nomado24.de/llms-full.txtExtended knowledge base with company facts and the full FAQ.
REST APIapi.nomado24.de/api/public/v1/jobsCurrent job listings as JSON, no key, with full-text search and a language filter.
OpenAPI 3.1www.nomado24.de/openapi.yamlMachine-readable contract for the REST API, suitable for client generation.
MCP serverapi.nomado24.de/api/public/v1/mcpModel Context Protocol over Streamable HTTP, so an agent can search directly.
MCP registry entryraw.githubusercontent.com/AntonPetuchow/nomado24-mcp/main/server.jsonRegistry entry with server name, version and endpoint.
MCP discovery manifestwww.nomado24.de/.well-known/mcp/server.jsonMachine-readable description of the server at /.well-known/mcp/server.json: endpoint, headers, rate limit and the parameter schema of all three tools.
Statistics datasetwww.nomado24.de/remote-jobs-statistik.jsonLive market figures as JSON, with collection timestamp and licence.
Report datasetwww.nomado24.de/remote-arbeitsmarkt-2026-08.jsonFrozen monthly figures of the current data report as JSON.
Report as Markdownwww.nomado24.de/remote-arbeitsmarkt-2026-08-en.mdThe same report as structured text, cheap in tokens.
Jobs feedwww.nomado24.de/jobs.xmlNewest indexable listings as RSS, the simplest integration there is.
Sitemapwww.nomado24.de/sitemap.xmlEvery 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.

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.

Read the full developer documentation