> 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-multi.md).

# Coins Price

Retrieve the latest price and price change (24-hour, 7-day, and 30-day) for multiple coins in a single request.\
You can use either the GET or POST method to retrieve the data.

Maximum 100 items can be requested at once. If you need to request large items, please consider using the POST method.

***

## **Endpoint**

You can use the following endpoints to retrieve coin prices:

```
GET /api/v1/partner/coin-price-multi
```

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

## Parameters

### GET Request Parameters

| Name       | Type   | Required | Description                                                                                                                   |
| ---------- | ------ | -------- | ----------------------------------------------------------------------------------------------------------------------------- |
| `coin_ids` | string | Yes      | The unique identifier of the coins, separated by commas (e.g., `0x...::module::COIN,0x...::module::COIN`). Maximum 100 items. |

### POST 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**

### GET

```bash
curl --location 'https://api.noodles.fi/api/v1/partner/coin-price-multi?coin_ids=0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270%3A%3Adeep%3A%3ADEEP%2C0x12f4f6f3b8352e1d1ba1df4d6941e8720b8e37342f95ebb7780898621f7692ab%3A%3Ajelly%3A%3AJELLY%2C006734e1fe4c43141f47326a88c748c8900ab222e8794d0dfe545a90943ee7ab%3A%3Asuia%3A%3ASUIA' \
--header 'Accept-Encoding: application/json' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'x-chain: sui'
```

### POST

```bash
curl --location 'https://api.noodles.fi/api/v1/partner/coin-price-multi' \
--header 'Accept-Encoding: application/json' \
--header 'x-api-key: YOUR_API_KEY' \
--header 'x-chain: sui' \
--header 'Content-Type: application/json' \
--data '{
    "coin_ids": ["0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP", "0x0000000000000000000000000000000000000000000000000000000000000002::sui::SUI", 
    "006734e1fe4c43141f47326a88c748c8900ab222e8794d0dfe545a90943ee7ab::suia::SUIA"]
}'
```

***

## **Response**

### Field

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

* Key: Coin Identifier (e.g., `0x0000000000000000000000000000000000000000000000000000000000000002::sui::SUI`)
* Value: Coin Price Data
* If the coin has no data, the value will be `null`.
* 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.                                 |
| `price_change_24h` | `number` | Yes      | Percentage change in price over the last 24 hours. |
| `price_change_7d`  | `number` | Yes      | Percentage change in price over the last 7 days.   |
| `price_change_30d` | `number` | Yes      | Percentage change in price over the last 30 days.  |

### Success Response

```json
{
    "data": {
        "0x006734e1fe4c43141f47326a88c748c8900ab222e8794d0dfe545a90943ee7ab::suia::SUIA": null,
        "0x0000000000000000000000000000000000000000000000000000000000000002::sui::SUI": {
            "price": 3.72,
            "price_change_24h": -5.58,
            "price_change_7d": -0.27,
            "price_change_30d": 69.09
        },
        "0xdeeb7a4662eec9f2f3def03fb937a663dddaa2e215b8078a284d026b7946c270::deep::DEEP": {
            "price": 0.1839792539,
            "price_change_24h": -7.88,
            "price_change_7d": -2.4,
            "price_change_30d": 137.57
        }
    }
}
```

***

> **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-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.
