> For the complete documentation index, see [llms.txt](https://docs.ticko.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ticko.xyz/api-documentation/market/rest-api/get-tickers.md).

# Get Tickers

## Get Tickers

> Returns 24h market summary data.\
> \
> \*\*Rate-limit weight\*\*\
> \
> \- \*\*By IP:\*\* \`2\`

```json
{"openapi":"3.1.0","info":{"title":"Ticko API","version":"1.0"},"tags":[{"name":"Market","description":"Public market data: symbols, coins, tickers, order book, trades, klines, funding rates, and reference data."}],"servers":[{"url":"https://api.testnet.ticko.xyz/v1","description":"Testnet"}],"paths":{"/market/tickers":{"get":{"operationId":"getTickers","summary":"Get Tickers","tags":["Market"],"description":"Returns 24h market summary data.\n\n**Rate-limit weight**\n\n- **By IP:** `2`","parameters":[{"name":"symbol_id","in":"query","required":false,"description":"Trading pair ID. Omit to return all tickers.","schema":{"type":"integer"}}],"responses":{"200":{"description":"Success","content":{"application/json":{"schema":{"allOf":[{"$ref":"#/components/schemas/Envelope"},{"type":"object","properties":{"data":{"type":"object","properties":{"list":{"type":"array","description":"Ticker objects.","items":{"type":"object","properties":{"symbol_id":{"type":"integer","description":"Trading pair ID."},"last_price":{"type":"string","description":"Last traded price."},"mark_price":{"type":["string","null"],"description":"Mark price for perpetuals."},"oracle_price":{"type":["string","null"],"description":"Oracle price for perpetuals."},"best_bid_price":{"type":"string","description":"Best bid price."},"best_bid_quantity":{"type":"string","description":"Best bid quantity."},"best_ask_price":{"type":"string","description":"Best ask price."},"best_ask_quantity":{"type":"string","description":"Best ask quantity."},"high_24h":{"type":"string","description":"24h high."},"low_24h":{"type":"string","description":"24h low."},"volume_24h":{"type":"string","description":"24h base volume."},"turnover_24h":{"type":"string","description":"24h quote turnover."},"price_change_24h":{"type":"string","description":"24h price change ratio."},"open_interest":{"type":["string","null"],"description":"Open interest in token quantity for perpetuals."},"funding_rate":{"type":["string","null"],"description":"Current funding rate for perpetuals."},"next_funding_time":{"type":["integer","null"],"description":"Next funding timestamp."},"time":{"type":"integer","description":"Market data timestamp."}}}}}}}}]}}}}}}}},"components":{"schemas":{"Envelope":{"type":"object","description":"Standard success response envelope. `data` is defined per endpoint.","properties":{"code":{"type":"string","description":"`\"0\"` on success."},"msg":{"type":"string","description":"Empty on success."},"trace_code":{"type":"string","description":"Backend trace identifier. Empty on success."}}}}}}
```


---

# 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://docs.ticko.xyz/api-documentation/market/rest-api/get-tickers.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.
