> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# ResponsesErrorField

Error information returned from the API

## Example Usage

```typescript theme={null}
import { ResponsesErrorField } from "@openrouter/sdk/models";

let value: ResponsesErrorField = {
  code: "rate_limit_exceeded",
  message: "Rate limit exceeded. Please try again later.",
};
```

## Fields

| Field     | Type                              | Required             | Description |
| --------- | --------------------------------- | -------------------- | ----------- |
| `code`    | [models.Code](../models/code.mdx) | :heavy\_check\_mark: | N/A         |
| `message` | *string*                          | :heavy\_check\_mark: | N/A         |
