Live

Taloo Public API

Platform integration API for external consumers & job-board channels

Explorer & Docs

Technical endpoints POST /v1/graphql GET /openapi.json

Quick start

# Authenticate with your channel API key
curl -H "x-channel-api-key: <your-channel-api-key>" \
     -X POST -H "Content-Type: application/json" \
     -d '{"query":"{ vacancies(first:5) { edges { node { title } } pageInfo { hasNextPage endCursor } } }"}' \
     https://demo.api.taloo.ch/v1/graphql

System

Client Libraries

Generate type-safe clients from the schema — no hand-written types needed.

# Generate REST types from the live OpenAPI spec
npx openapi-typescript https://demo.api.taloo.ch/openapi.json --output ./taloo-public.d.ts