For the complete documentation index, see llms.txt. This page is also available as Markdown.

Récupérer une mission par identifiant

Récupère le détail d'une mission à partir de son identifiant unique.

Récupérer une mission par ID

get
/v0/mission/{id}
Authorizations
x-api-keystringRequired

Clé API fournie par l'équipe API Engagement

Path parameters
idstringRequired

Identifiant interne de la mission

Example: 64a1b2c3d4e5f6789abc0001
Responses
200

Mission trouvée

application/json
okbooleanOptionalExample: true
get/v0/mission/{id}
GET /v0/mission/{id} HTTP/1.1
Host: api.api-engagement.beta.gouv.fr
x-api-key: YOUR_API_KEY
Accept: */*
{
  "ok": true,
  "data": {
    "id": "64a1b2c3d4e5f6789abc0001",
    "clientId": "mission-bénévolat-2024-001",
    "publisherId": "5f5931496c7ea514150a818f",
    "statusCode": "ACCEPTED",
    "title": "Animateur bénévole en maison de retraite",
    "applicationUrl": "https://example.org/missions/001/postuler",
    "domain": "sante",
    "activities": [
      "animation",
      "accompagnement"
    ],
    "audience": [
      "seniors",
      "personnes-isolees"
    ],
    "remote": "no",
    "schedule": "2 heures par semaine le samedi matin",
    "places": 5,
    "openToMinors": "yes",
    "reducedMobilityAccessible": "yes",
    "addresses": [
      {
        "street": "12 rue de la Paix",
        "zip": "75001",
        "city": "Paris",
        "department": "75",
        "departmentName": "Paris",
        "region": "Île-de-France",
        "country": "France",
        "location": {
          "lat": 48.8698,
          "lon": 2.3303
        }
      }
    ],
    "organizationName": "Croix-Rouge française",
    "organizationRNA": "W751206979",
    "organizationSiren": "775672272",
    "organizationSiret": "77567227221138",
    "organizationUrl": "https://www.croix-rouge.fr",
    "createdAt": "2024-01-15T09:00:00.000Z",
    "updatedAt": "2024-03-01T14:30:00.000Z",
    "_id": "text",
    "activity": "text",
    "publisherName": "text",
    "publisherUrl": "https://example.com",
    "publisherLogo": "https://example.com",
    "domainLogo": "https://example.com",
    "postedAt": "2026-01-01T00:00:00.000Z",
    "duration": 1,
    "location": {
      "lat": 1,
      "lon": 1
    }
  }
}

Last updated