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

# GET /coins/solana-tokens/price

**URL:** [https://xapi.duelduck.com/coins/solana-tokens/price](https://xapi.duelduck.com/coins/solana-tokens/price)

**URL:** [https://xapi.duelduck.com/coins/solana-tokens/price](https://xapi.duelduck.com/coins/solana-tokens/price)

Retrieve current token price by mint address (query param).

### **Parameters**

| Name | Type   | Query | Required | Description        |
| :--- | :----- | :---- | :------- | :----------------- |
| mint | string | mint  | yes      | Token mint address |

### **Responses**

**Response content type:** application / json .

#### Code 200

Token price retrieved successfully.

```text theme={"dark"}
{
  "price": 0
}
```

#### Code 400

Invalid request params.

```text theme={"dark"}
{
  "message": "string",
  "status": 0
}
```

#### Code 404

Token not found.

```text theme={"dark"}
{
  "message": "string",
  "status": 0
}
```

#### Code 500

Internal server error.

```text theme={"dark"}
{
  "message": "string",
  "status": 0
}
```

#### Code 503

External service unavailable.

```text theme={"dark"}
{
  "message": "string",
  "status": 0
}
```
