> For the complete documentation index, see [llms.txt](https://noodles-finance.gitbook.io/docs.noodles.fi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://noodles-finance.gitbook.io/docs.noodles.fi/coin/coin-price-volume-multi.md).

# Coins Price Volume

Retrieve the latest price, 24-hour volume, price change, and volume change for multiple coins in a single request.

Maximum 100 items can be requested at once.

***

## **Endpoint**

```
POST /api/v1/partner/coin-price-volume-multi
```

## **Request Parameters**

| Name       | Type      | Required | Description                                                                                                             |
| ---------- | --------- | -------- | ----------------------------------------------------------------------------------------------------------------------- |
| `coin_ids` | string\[] | Yes      | An array of unique identifiers for the coins (e.g., \[`0x...::module::COIN`,`0x...::module::COIN`]). Maximum 100 items. |

***

## **Headers**

| Header      | Required | Description                          |
| ----------- | -------- | ------------------------------------ |
| `x-api-key` | Yes      | API key for authorization.           |
| `x-chain`   | Yes      | Blockchain identifier (e.g., `sui`). |

***

## **cURL Example**

```bash
curl --location 'https://api.noodles.fi/api/v1/partner/coin-price-volume-multi' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data '{
    "coin_ids": ["0xcb8fc6858b4d600611cb783a65459695711b8aaca0e949ef5aa1268d1e32f786::suimon::SUIMON",
    "0x7a272959f0bdfc46a89b6226666eae89ddbb9e392c15c96a3a912f5a854d5c63::oink::OINK"]
}'
```

***

## **Response**

### Field

Each coin in the response will have a mapping of its unique identifier to its price volume data:

* Key: Coin Identifier (e.g., `0x0000000000000000000000000000000000000000000000000000000000000002::sui::SUI`)
* Value: Coin Price Volume Data
* If the coin has no data, the value will have zero values for all fields.
* If the coin has data, the value will be an object containing the following fields:

| Field               | Type     | Nullable | Description                                                 |
| ------------------- | -------- | -------- | ----------------------------------------------------------- |
| `price`             | `number` | No       | Price of the coin.                                          |
| `volume_24h`        | `number` | No       | 24-hour trading volume in USD.                              |
| `price_change_24h`  | `number` | No       | Percentage change in price over the last 24 hours.          |
| `volume_change_24h` | `number` | No       | Percentage change in trading volume over the last 24 hours. |

### Success Response

```json
{
    "code": 200,
    "message": "OK",
    "data": {
        "0x7a272959f0bdfc46a89b6226666eae89ddbb9e392c15c96a3a912f5a854d5c63::oink::OINK": {
            "price": 0.00025,
            "volume_24h": 2004.4,
            "price_change_24h": -13.73,
            "volume_change_24h": -59
        },
        "0xcb8fc6858b4d600611cb783a65459695711b8aaca0e949ef5aa1268d1e32f786::suimon::SUIMON": {
            "price": 0.000713,
            "volume_24h": 46076.21,
            "price_change_24h": -5.66,
            "volume_change_24h": 2.79
        }
    }
}
```

***

> **See also:** [Environment Setup](/docs.noodles.fi/environment-setup/environment.md)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://noodles-finance.gitbook.io/docs.noodles.fi/coin/coin-price-volume-multi.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
