85,057 offers · 62,076 programmes
Technical reference

API v1 Reference

Authentication, endpoints, parameters, curl examples and JSON responses. Base: all URLs are relative to the production origin.

Authentication

Send your partner token in one of these HTTP headers on every request (except the public catalog):

Authorization: Bearer <token>
# ou
X-Api-Key: <token>

The request examples (curl) and response examples (JSON) are provided identically in all languages — they are technical data.

Endpoints

GET/api/v1Public

Self-documented API catalog (public, no token).

Request example

curl "https://www.superalternance.com/api/v1"

Response example

{
  "name": "superalternance API partenaires",
  "version": "1",
  "authentication": { "type": "bearer", "description": "…" },
  "endpoints": [ … ]
}
GET/api/v1/suggestToken required

"Occupation or training" autocomplete for a search bar.

Parameters

ParameterTypeRequiredDescription
qstringYesQuery text (≥ 2 characters).
limitintNoNumber of suggestions (1–20, default 8).

Request example

curl -H "Authorization: Bearer $TOKEN" \
  "https://www.superalternance.com/api/v1/suggest?q=boul&limit=5"

Response example

{
  "query": "boul",
  "suggestions": [
    { "kind": "rome", "value": "Boulanger", "secondary": "Métier" },
    { "kind": "formation", "value": "CAP Boulanger", "secondary": "CFA des métiers" }
  ]
}
GET/api/v1/placesToken required

Location autocomplete: regions, departments and municipalities.

Parameters

ParameterTypeRequiredDescription
qstringYesQuery text (≥ 2 characters).
limitintNoNumber of suggestions (1–12, default 8).

Request example

curl -H "Authorization: Bearer $TOKEN" \
  "https://www.superalternance.com/api/v1/places?q=lyon"

Response example

{
  "query": "lyon",
  "suggestions": [
    { "kind": "city", "value": "Lyon", "secondary": "69001 · Rhône", "lat": 45.758, "lng": 4.835 }
  ]
}
GET/api/v1/jobs/latestToken required

Latest published work-study offers, with optional location filter.

Parameters

ParameterTypeRequiredDescription
lieustringNoRegion / department / municipality.
latfloatNoLatitude (radius search).
lngfloatNoLongitude (radius search).
radiusfloatNoRadius in km (default 30).
limitintNoNumber of job offers (1–100, default 20).

Request example

curl -H "Authorization: Bearer $TOKEN" \
  "https://www.superalternance.com/api/v1/jobs/latest?lieu=Bordeaux&limit=10"

Response example

{
  "filters": { "lieu": "Bordeaux" },
  "total": 10,
  "jobs": [
    { "id": "…", "title": "Développeur web en alternance", "subtitle": "Acme · Bordeaux",
      "city": "Bordeaux", "latitude": 44.84, "longitude": -0.58,
      "labels": ["Apprentissage"], "url": "https://www.superalternance.com/fr/offres/…" }
  ]
}
GET/api/v1/jobs/{id}Token required

Full detail of an offer: contract, employer, location, application.

Parameters

ParameterTypeRequiredDescription
idpathYesJob offer identifier (`id` field returned by the search).

Request example

curl -H "Authorization: Bearer $TOKEN" \
  "https://www.superalternance.com/api/v1/jobs/abc123"

Response example

{
  "job": {
    "id": "abc123", "title": "Boulanger en alternance",
    "contractTypes": ["Apprentissage"], "duration": "24 mois",
    "location": { "city": "Lyon", "zipCode": "69003", "region": "Auvergne-Rhône-Alpes" },
    "company": { "name": "Maison Dupain", "siret": "…", "siren": "…" },
    "apply": { "email": null, "url": "…" }
  }
}
GET/api/v1/formations/{id}Token required

Full detail of a training program: diploma, RNCP, provider (CFA), schedule.

Parameters

ParameterTypeRequiredDescription
idpathYesTraining identifier (`id` field returned by the search).

Request example

curl -H "Authorization: Bearer $TOKEN" \
  "https://www.superalternance.com/api/v1/formations/xyz789"

Response example

{
  "formation": {
    "id": "xyz789", "title": "CAP Boulanger", "diploma": "CAP",
    "rncpCode": "RNCP…", "targetDiplomaLevel": "3",
    "location": { "city": "Lyon", "region": "Auvergne-Rhône-Alpes" },
    "cfa": { "name": "CFA des métiers", "siret": "…" }
  }
}
GET/api/v1/companies/{siret}Token required

Employer profile by SIRET and list of its open work-study offers.

Parameters

ParameterTypeRequiredDescription
siretpathYes14-digit SIRET.

Request example

curl -H "Authorization: Bearer $TOKEN" \
  "https://www.superalternance.com/api/v1/companies/12345678901234"

Response example

{
  "company": {
    "siret": "12345678901234", "siren": "123456789", "name": "Maison Dupain",
    "size": "10 à 19 salariés", "nafCodes": ["1071C"],
    "location": { "city": "Lyon", "region": "Auvergne-Rhône-Alpes" },
    "openJobsCount": 3, "openJobs": [ … ]
  }
}
GET/api/v1/statsToken required

Aggregated platform statistics (+ counts by occupation).

Parameters

ParameterTypeRequiredDescription
metierstringNoIf provided, adds the counters specific to this job.

Request example

curl -H "Authorization: Bearer $TOKEN" \
  "https://www.superalternance.com/api/v1/stats?metier=boulanger"

Response example

{
  "jobs": 17658, "formations": 58596, "cfa": 6923,
  "lastSyncAt": "2026-06-04T21:01:06.369Z",
  "metier": { "name": "boulanger", "jobs": 42, "formations": 120, "diplomas": 8 }
}

Error codes

Errors follow a single shape: { "error": { "code": "…", "message": "…" } }.

StatusCodeMeaning
400bad_requestMissing or invalid parameter.
401unauthorizedMissing access token.
403forbiddenInvalid access token.
404not_foundResource not found.
500internalServer error or API not configured.

For AI agents

The public JSON catalog describes all endpoints, parameters and errors in a machine-readable way, without authentication. An ideal entry point for an agent discovering the API.

Open the JSON catalog

API v1 Reference — Endpoints, parameters and examples | superalternance · superalternance