> ## 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.

# ResultError

## Example Usage

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

let value: ResultError = {
  message: "<value>",
  param: "<value>",
  type: "<value>",
};
```

## Fields

| Field       | Type                                              | Required             | Description                                                    | Example               |
| ----------- | ------------------------------------------------- | -------------------- | -------------------------------------------------------------- | --------------------- |
| `errorType` | [models.ApiErrorType](../models/apierrortype.mdx) | :heavy\_minus\_sign: | Canonical OpenRouter error type, stable across all API formats | rate\_limit\_exceeded |
| `message`   | *string*                                          | :heavy\_check\_mark: | N/A                                                            |                       |
| `param`     | *string*                                          | :heavy\_check\_mark: | N/A                                                            |                       |
| `type`      | *string*                                          | :heavy\_check\_mark: | N/A                                                            |                       |
