---
title: "ErrorResponse"
url: "https://console.9fin.com/apis/news-api-v2/versions/d8d91da6-77d3-48db-a023-e71b20cfd311/schemas/ErrorResponse"
---

> Full API specification: https://console.9fin.com/apis/news-api-v2/versions/d8d91da6-77d3-48db-a023-e71b20cfd311.md

# ErrorResponse

## OpenAPI definition

```yaml
openapi: 3.1.0
info:
  title: 9fin News & Content API - v2
  version: 0.3.38
servers:
  - url: https://api.9fin.com
    description: prod
components:
  schemas:
    ErrorResponse:
      properties:
        error_code:
          type: string
          title: Error Code
        message:
          type: string
          title: Message
        trace_id:
          anyOf:
            - type: string
            - type: "null"
          title: Trace Id
      type: object
      required:
        - error_code
        - message
        - trace_id
      title: ErrorResponse
      examples:
        - error_code: invalid_cursor
          message: The supplied cursor could not be decoded.
          trace_id: 202bde256c7d446f9623efdc96286c5d
        - error_code: invalid_content_tag
          message: "invalid content_tags: ['invalid']"
          trace_id: c2416d52c6d14c8e831aad792407442c
        - error_code: invalid_nf_ids
          message: at most 10 nf_ids may be provided
          trace_id: a7917e8250d74e898d415b5a948d46f8
```
