# HTTP Status Codes

NVIDIA Run:ai APIs use standard HTTP status codes to indicate whether a request succeeded or failed.

## Success Responses

| Status code        | Meaning                                                 |
| ------------------ | ------------------------------------------------------- |
| **200 OK**         | The request succeeded.                                  |
| **202 Accepted**   | The request was accepted but is still being processed.  |
| **204 No Content** | The request succeeded and no response body is returned. |

## Client Error Responses (4xx)

| Status code                | Meaning                                                |
| -------------------------- | ------------------------------------------------------ |
| **400 Bad Request**        | The request is invalid.                                |
| **401 Unauthorized**       | Authentication failed.                                 |
| **403 Forbidden**          | The caller is authenticated but not authorized.        |
| **404 Not Found**          | The requested resource does not exist.                 |
| **405 Method Not Allowed** | The method is not allowed for this endpoint.           |
| **409 Conflict**           | The request conflicts with the current resource state. |

## Server Error Responses (5xx)

| Status code                   | Meaning                                                                              |
| ----------------------------- | ------------------------------------------------------------------------------------ |
| **500 Internal Server Error** | An unexpected server error occurred.                                                 |
| **501 Not Implemented**       | The server does not support the requested functionality.                             |
| **502 Bad Gateway**           | The gateway received an invalid response from an upstream service.                   |
| **503 Service Unavailable**   | The service is temporarily unavailable or an internal service dependency is failing. |
| **504 Gateway Timeout**       | The gateway timed out waiting for an upstream service.                               |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://run-ai-docs.nvidia.com/api/2.24/getting-started/using-the-rest-api/http-status-codes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
