# DeFi Multiprice

{% hint style="info" %}
This endpoint is new and currently considered to be "experimental."&#x20;
{% endhint %}

{% hint style="warning" %}
The "Test it" functionality requires providing an API key in the Authorization Header. You can acquire a free API key by "purchasing" the free tier of the SVS API at <https://cloud.solanavibestation.com>
{% endhint %}

## Get Multiple Token Prices

> Retrieve pricing information for multiple tokens by address.

````json
{"openapi":"3.1.0","info":{"title":"Solana Vibe Station API","version":"0.2.0"},"servers":[{"url":"https://free.api.solanavibestation.com"}],"security":[{},{"AuthHeader":[]},{"URLParameter":[]}],"components":{"securitySchemes":{"AuthHeader":{"type":"apiKey","in":"header","name":"Authorization","description":"Authorization header for API key authentication.\n\n**Example:**\n```\nAuthorization: your-api-key-here\n```\n"},"URLParameter":{"type":"apiKey","in":"query","name":"api_key","description":"API key passed as a URL parameter for authentication.\n\n**Example:**\n```\nhttps://free.api.solanavibestation.com/metadata?api_key=your-api-key-here\n```\n"}},"schemas":{"MultiPriceRequest":{"type":"object","description":"Request for multiple token pricing information","required":["list_address"],"properties":{"list_address":{"type":"string","description":"Token mint address to retrieve pricing for"}}},"MultiPriceResponse":{"type":"object","description":"Response containing pricing information for multiple tokens","additionalProperties":{"$ref":"#/components/schemas/MultiPriceData"},"propertyNames":{"type":"string"}},"MultiPriceData":{"type":"object","description":"Pricing data for a single token","required":["value","priceChange24h","priceInNative","liquidity"],"properties":{"value":{"type":"number","format":"double","description":"Current price value"},"priceChange24h":{"type":"number","format":"double","description":"Price change over the last 24 hours (percentage)"},"priceInNative":{"type":"number","format":"double","description":"Price in native token (SOL)"},"liquidity":{"type":"number","format":"double","description":"Available liquidity"}}},"MultiPriceRequestError":{"oneOf":[{"type":"object","required":["InvalidInput"],"properties":{"InvalidInput":{"type":"string","description":"Error message for invalid input format"}}},{"type":"object","required":["InvalidMint"],"properties":{"InvalidMint":{"type":"string","description":"Error message for invalid mint address"}}},{"type":"object","required":["TooManyMints"],"properties":{"TooManyMints":{"type":"string","description":"Error message when too many mints are requested in a single call"}}}]}}},"paths":{"/defi/multi_price":{"post":{"operationId":"defi_multi_price","summary":"Get Multiple Token Prices","description":"Retrieve pricing information for multiple tokens by address.","requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/MultiPriceRequest"}}},"required":true},"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MultiPriceResponse"}}}},"400":{"description":"Invalid input","content":{"application/json":{"schema":{"$ref":"#/components/schemas/MultiPriceRequestError"}}}},"401":{"description":"Unauthorized","content":{"text/plain":{"schema":{"type":"string"}}}},"403":{"description":"Forbidden","content":{"text/plain":{"schema":{"type":"string"}}}},"429":{"description":"Too Many Requests","content":{"text/plain":{"schema":{"type":"string"}}}},"500":{"description":"Internal Server Error","content":{"text/plain":{"schema":{"type":"string"}}}}}}}}}
````


---

# Agent Instructions: 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:

```
GET https://docs.solanavibestation.com/developers/partner-marketplace/svs-api/defi-multiprice.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
