---
updatedAt: 2026-05-07T14:21:27.000Z
---

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

# /daml/chains

Returns a list with the names of the Daml blockchains currently supported by this API. Use the provided chain names when calling other endpoints.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Translate API",
    "description": "Translate raw blockchain transactions into human-friendly, enriched form. Powered by Noves.",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://translate.noves.fi/"
    }
  ],
  "paths": {
    "/daml/chains": {
      "get": {
        "tags": [
          "Daml"
        ],
        "summary": "/daml/chains",
        "description": "Returns a list with the names of the Daml blockchains currently supported by this API. Use the provided chain names when calling other endpoints.",
        "parameters": [
          {
            "name": "apiKey",
            "in": "header",
            "description": "API Key for Translate 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": {
              "application/json": {}
            }
          }
        }
      }
    }
  }
}
```