Responses

  • 200 application/json

    200 response

    Hide response attributes Show response attributes object
    • id integer
    • name string
    • url string

      URL de l'image

    • energies array[string]

      Type de carburant

      Values are Essence SP, Diesel, Electrique, or Hybride.

    • gearboxes array[string]

      Type de boite de vitesse

      Values are Manuelle or Automatique.

    • created_at string
    • categories array[object]
      Hide categories attributes Show categories attributes object
      • id string
      • name string
      • description string
      • details object
        Hide details attributes Show details attributes object
        • gearbox array[string]
        • energy array[string]
GET /filter-groups
curl \
 --request GET 'https://api.fleetee.io/filter-groups' \
 --header "x-api-key: $API_KEY"
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "url": "string",
    "energies": [
      "Essence SP"
    ],
    "gearboxes": [
      "Manuelle"
    ],
    "created_at": "string",
    "categories": [
      {
        "id": "string",
        "name": "string",
        "description": "string",
        "details": {
          "gearbox": [
            "string"
          ],
          "energy": [
            "string"
          ]
        }
      }
    ]
  }
]