Status
Report overall API status and per-model availability. This endpoint is unauthenticated: no API key is required. Check it for service disruptions before retrying failed requests; see error handling for retry guidance.
GET /status
Get API status.
Response
HTTP 200 — OK
Content Type: application/json
StatusResponse
pythonimport jsonimport osimport requestsresponse = requests.get("https://api.meta.ai/v1/status",headers={"Authorization": f"Bearer {os.environ['MODEL_API_KEY']}"},)response.raise_for_status()print(json.dumps(response.json(), indent=2))
shellcurl -X GET "https://api.meta.ai/v1/status" \-H "Authorization: Bearer $MODEL_API_KEY"