---
title: Response codes
description: InfluxDB 3 Clustered API endpoints return standard HTTP status codes. Status code Description 200 OK Request succeeded. Response body contains the requested data. 204 No Content Request succeeded. No response body (common for successful writes). 400 Bad Request Malformed request — check syntax, query, or line protocol for errors. 401 Unauthorized Missing or invalid token. Verify the Authorization header and token permissions. 403 Forbidden Valid token but insufficient permissions for the request
url: https://docs.influxdata.com/influxdb3/clustered/api/data-api/response-codes/
estimated_tokens: 600
product: InfluxDB Clustered
version: clustered
---

[Download Clustered Data API Spec](/openapi/influxdb-clustered-data-api.yml)

InfluxDB 3 Clustered API endpoints return standard HTTP status codes.

| Status code | Description |
| --- | --- |
| 200 OK | Request succeeded. Response body contains the requested data. |
| 204 No Content | Request succeeded. No response body (common for successful writes). |
| 400 Bad Request | Malformed request — check syntax, query, or line protocol for errors. |
| 401 Unauthorized | Missing or invalid token. Verify the Authorization header and token permissions. |
| 403 Forbidden | Valid token but insufficient permissions for the requested operation. |
| 404 Not Found | The requested resource does not exist — check the database name and endpoint path. |
| 422 Unprocessable Entity | The request body is syntactically valid but semantically incorrect. |
| 429 Too Many Requests | Request rate exceeds cluster limits. Retry with exponential backoff. |
| 500 Internal Server Error | Server error. If the error persists, contact InfluxData support. |
