Aller au contenu
GET /v1/meta

Service metadata

Essayez-le en direct

10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.

En-têtes personnalisés (facultatif)
api.oanor.com/abs-api

Ça marche. Récupérez une clé API et utilisez-la dans votre projet.

Obtenez une clé API

Extraits de code

curl "https://api.oanor.com/abs-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/abs-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/abs-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/abs-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Exemple de réponse

Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.

{
    "data": {
        "name": "Australian Bureau of Statistics API",
        "source": "Australian Bureau of Statistics Data API (data.api.abs.gov.au)",
        "country": "Australia",
        "endpoints": [
            {
                "path": "/v1/cpi",
                "description": "Latest headline Consumer Price Index"
            },
            {
                "path": "/v1/dataflows",
                "description": "List/search ABS dataflows (?search=cpi&limit=100)"
            },
            {
                "path": "/v1/data",
                "description": "Latest observations for any series (?dataflow=CPI&key=1.10001.10.50.Q&periods=8)"
            },
            {
                "path": "/v1/meta",
                "description": "This metadata document"
            }
        ],
        "disclaimer": "Unofficial proxy of the public ABS Data API. Not affiliated with the Australian Bureau of Statistics. Data only; refer to the ABS for authoritative figures.",
        "description": "A gateway to the official Australian Bureau of Statistics (ABS) SDMX data service. Read the latest headline CPI, browse and search the 1,200+ ABS statistical dataflows, and fetch the latest observations for any ABS series by its dataflow id and SDMX key. Values always resolve to the latest published period."
    },
    "meta": {
        "timestamp": "2026-06-15T11:14:57.358Z",
        "request_id": "d3ef290c-9c68-4519-aa59-921120937ee3"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}