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

# List Charts

> Returns one page of the Blockworks Charts your key can read, each with the chart id, its title, and the Blockworks Dashboards it appears on.



## OpenAPI

````yaml api-reference/charts/openapi.json GET /v1/charts
openapi: 3.0.3
info:
  title: Blockworks Charts API
  description: >-
    Blockworks Charts, the charts published to Blockworks Dashboards, and the
    rows behind them. List the charts your key can read, then fetch a chart's
    data by id. Authenticate by sending your API key in the X-Blockworks-API-Key
    header.
  version: 1.0.0
servers:
  - url: https://api.blockworks.com
    description: Blockworks API
security:
  - apiKey: []
tags:
  - name: Charts
    description: Charts published to Blockworks Dashboards, and their data.
paths:
  /v1/charts:
    get:
      tags:
        - Charts
      summary: List Charts
      description: >-
        Returns one page of the Blockworks Charts your key can read: the charts
        published to Blockworks Dashboards. Each entry carries the chart `id`
        that Get Chart Data takes, the chart title, and the titles of the
        dashboards the chart appears on. Pass `search` to keep only charts whose
        title, or whose dashboard's title, contains the term.
      operationId: listCharts
      parameters:
        - name: page
          in: query
          required: false
          description: Page number, starting at 1.
          schema:
            type: integer
            minimum: 1
            default: 1
        - name: limit
          in: query
          required: false
          description: Charts per page.
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 100
        - name: search
          in: query
          required: false
          description: >-
            Case-insensitive substring matched against the chart title and the
            titles of the dashboards it appears on.
          schema:
            type: string
          example: stablecoin
      responses:
        '200':
          description: One page of charts.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChartPage'
              example:
                page: 1
                total: 2
                data:
                  - id: 4821
                    title: Stablecoin Supply by Issuer
                    dashboards:
                      - Stablecoins
                      - Market Overview
                  - id: 5107
                    title: Stablecoin Transfer Volume by Chain
                    dashboards:
                      - Stablecoins
        '400':
          description: Bad Request. A query parameter is out of range or of the wrong type.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                statusCode: 400
                message:
                  - limit must not be greater than 100
                error: Bad Request
        '401':
          description: Unauthorized. The API key is missing or was rejected.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                statusCode: 401
                message: Unauthorized
        '503':
          description: >-
            Service Unavailable. The key could not be verified right now. Retry
            the request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
              example:
                statusCode: 503
                message: Service Unavailable
components:
  schemas:
    ChartPage:
      type: object
      required:
        - page
        - total
        - data
      properties:
        page:
          type: integer
          description: The page returned.
        total:
          type: integer
          description: Number of charts matching the request across all pages.
        data:
          type: array
          items:
            $ref: '#/components/schemas/Chart'
    Error:
      type: object
      required:
        - statusCode
        - message
      properties:
        statusCode:
          type: integer
          description: The HTTP status code, repeated in the body.
        message:
          description: >-
            What went wrong. A string, or an array of strings when several
            parameters failed validation.
          oneOf:
            - type: string
            - type: array
              items:
                type: string
        error:
          type: string
          description: The status text, present on 400 and 404 responses.
    Chart:
      type: object
      required:
        - id
        - title
        - dashboards
      properties:
        id:
          type: integer
          description: The chart id. Pass it to Get Chart Data.
        title:
          type: string
          nullable: true
          description: The chart title as shown on the dashboard.
        dashboards:
          type: array
          description: >-
            Titles of the Blockworks Dashboards the chart appears on. Empty for
            a chart on no dashboard.
          items:
            type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: X-Blockworks-API-Key
      description: >-
        API key sent in the `X-Blockworks-API-Key` header. Send it on its own:
        the charts endpoints reject a request that carries a second credential.

````