---
updatedAt: 2026-02-27T01:29:56.000Z
---

Fetch the complete documentation index at: https://docs.noves.fi/llms.txt. Use this file to discover all available pages before exploring further.

# /chains

Returns a list of the DAML chains currently supported by this API. Use the provided chain names when calling other endpoints.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Pricing API",
    "description": "Real-time and historical DEX pricing across chains. Every token, priced. Powered by Noves.",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://pricing.noves.fi"
    }
  ],
  "paths": {
    "/daml/chains": {
      "get": {
        "tags": [
          "Daml"
        ],
        "summary": "/chains",
        "description": "Returns a list of the DAML chains currently supported by this API. Use the provided chain names when calling other endpoints.",
        "parameters": [
          {
            "name": "apiKey",
            "in": "header",
            "description": "API Key for Pricing API. To generate an API Key, visit https://noves.fi/pricing",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "default": "demokey"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Chain"
                  }
                }
              },
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Chain"
                  }
                }
              },
              "text/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Chain"
                  }
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "Chain": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          },
          "ecosystem": {
            "type": "string",
            "nullable": true
          },
          "nativeCoin": {
            "$ref": "#/components/schemas/NativeCoin"
          }
        },
        "additionalProperties": false
      },
      "NativeCoin": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "nullable": true
          },
          "symbol": {
            "type": "string",
            "nullable": true
          },
          "address": {
            "type": "string",
            "nullable": true
          },
          "decimals": {
            "type": "integer",
            "format": "int32"
          }
        },
        "additionalProperties": false
      }
    }
  }
}
```