---
updatedAt: 2026-06-04T18:38:20.000Z
---

# /{chain}/price/{tokenAddress}

Returns the token price at the requested point in time. If <i>timestamp</i> is omitted, the latest price is returned.
            
Only "cc" (Canton Coin) is currently supported. The token identifier is case-insensitive.
            
If the requested timestamp is earlier than the first indexed price observation, the endpoint returns 404.

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Canton API",
    "description": "Access public Canton updates, balances, prices, rewards, and more. Set up your own streams and alerts. Fetch fully reconciliable, accounting-grade data. Powered by Noves.",
    "version": "v1"
  },
  "servers": [
    {
      "url": "https://api.canton.noves.fi/"
    }
  ],
  "paths": {
    "/{chain}/price/{tokenAddress}": {
      "get": {
        "tags": [
          "Prices"
        ],
        "summary": "/{chain}/price/{tokenAddress}",
        "description": "Returns the token price at the requested point in time. If <i>timestamp</i> is omitted, the latest price is returned.\r\n            \r\nOnly \"cc\" (Canton Coin) is currently supported. The token identifier is case-insensitive.\r\n            \r\nIf the requested timestamp is earlier than the first indexed price observation, the endpoint returns 404.",
        "parameters": [
          {
            "name": "chain",
            "in": "path",
            "description": "Name of the chain.",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "default": "canton",
              "example": "canton"
            }
          },
          {
            "name": "tokenAddress",
            "in": "path",
            "description": "Token identifier to price. Currently only \"cc\" is supported.",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "default": "cc",
              "example": "cc"
            }
          },
          {
            "name": "timestamp",
            "in": "query",
            "description": "Timestamp to retrieve the price as of (Unix timestamp). Optional, defaults to the latest price.",
            "style": "form",
            "schema": {
              "type": "integer",
              "format": "int64"
            }
          },
          {
            "name": "apiKey",
            "in": "header",
            "description": "API Key for Canton API. To generate an API Key, visit https://app.noves.fi",
            "required": true,
            "style": "simple",
            "schema": {
              "type": "string",
              "default": "demokey"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DamlPriceResponseApiModel"
                }
              }
            }
          },
          "400": {
            "description": "Bad Request",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
          },
          "404": {
            "description": "Not Found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ProblemDetails"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": {
    "schemas": {
      "DamlPriceDetailModel": {
        "type": "object",
        "properties": {
          "amount": {
            "type": "string",
            "nullable": true
          },
          "currency": {
            "type": "string",
            "nullable": true,
            "readOnly": true
          }
        },
        "additionalProperties": false
      },
      "DamlPriceResponseApiModel": {
        "type": "object",
        "properties": {
          "chain": {
            "type": "string",
            "nullable": true
          },
          "token": {
            "allOf": [
              {
                "$ref": "#/components/schemas/DamlTokenInfo"
              }
            ],
            "nullable": true
          },
          "price": {
            "allOf": [
              {
                "$ref": "#/components/schemas/DamlPriceDetailModel"
              }
            ],
            "nullable": true
          },
          "priceStatus": {
            "type": "string",
            "nullable": true
          },
          "priceObservedAt": {
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "DamlTokenInfo": {
        "type": "object",
        "properties": {
          "address": {
            "type": "string",
            "nullable": true
          },
          "symbol": {
            "type": "string",
            "nullable": true
          },
          "name": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": false
      },
      "ProblemDetails": {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "nullable": true
          },
          "title": {
            "type": "string",
            "nullable": true
          },
          "status": {
            "type": "integer",
            "format": "int32",
            "nullable": true
          },
          "detail": {
            "type": "string",
            "nullable": true
          },
          "instance": {
            "type": "string",
            "nullable": true
          }
        },
        "additionalProperties": {}
      }
    }
  }
}
```