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

# Get Symbols

## Get Symbols

> Returns trading pair configuration.\
> \
> \*\*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/symbols":{"get":{"operationId":"getSymbols","summary":"Get Symbols","tags":["Market"],"description":"Returns trading pair configuration.\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 symbols.","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":"Symbol objects.","items":{"type":"object","properties":{"symbol_id":{"type":"integer","description":"Trading pair ID."},"status":{"type":"string","enum":["pre_launch","trading","suspended","delisted"],"description":"`pre_launch`, `trading`, `suspended`, or `delisted`."},"trading_mode":{"type":["string","null"],"enum":["normal","limit_only","post_only","reduce_only","cancel_only",null],"description":"`normal`, `limit_only`, `post_only`, `reduce_only`, `cancel_only`, or `null`."},"base_coin_id":{"type":"integer","description":"Base coin ID."},"quote_coin_id":{"type":"integer","description":"Quote coin ID."},"settle_coin_id":{"type":["integer","null"],"description":"Settlement coin ID for perpetuals."},"price_precision":{"type":"integer","description":"Price decimal precision."},"qty_precision":{"type":"integer","description":"Quantity decimal precision."},"price_step":{"type":"string","description":"Price increment."},"qty_step":{"type":"string","description":"Quantity increment."},"min_size":{"type":"string","description":"Minimum order quantity."},"max_size":{"type":"string","description":"Maximum order quantity."},"max_leverage":{"type":["integer","null"],"description":"Maximum leverage for perpetuals."},"default_leverage":{"type":["integer","null"],"description":"Default leverage when no user override exists."},"taker_fee_rate":{"type":"string","description":"Taker fee rate."},"maker_fee_rate":{"type":"string","description":"Maker fee rate."},"price_limit_pct":{"type":["string","null"],"description":"Perpetual price limit percentage."},"funding_interval":{"type":["integer","null"],"description":"Funding interval in hours."},"funding_interest_rate":{"type":["string","null"],"description":"Funding interest baseline per 8 hours."},"funding_rate_cap":{"type":["string","null"],"description":"Funding rate cap."},"funding_rate_floor":{"type":["string","null"],"description":"Funding rate floor."},"funding_clamp_deviation":{"type":["string","null"],"description":"Funding clamp deviation."},"impact_margin_notional":{"type":["string","null"],"description":"Impact margin notional."},"global_oi_cap":{"type":["string","null"],"description":"Global open interest cap by USD notional."},"price_step_merge_multiplier":{"type":"array","description":"Allowed order book merge multipliers of `price_step`."}}}}}}}}]}}}}}}}},"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-symbols.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.
