Get Tick Size
Returns the minimum price increment (tick size) for a token’s market. Defaults to "0.01" when no explicit configuration exists.
Endpoints
Section titled “Endpoints”| Method | Path | Description |
|---|---|---|
GET | /tick-size?token_id=... | Query parameter variant |
GET | /tick-size/{token_id} | Path parameter variant |
Base URL: https://api.openfish.fun
Authentication
Section titled “Authentication”None required.
Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
token_id | string | Yes | Token ID (asset ID) — as query param or path param |
Response
Section titled “Response”{ "minimum_tick_size": "0.01"}| Field | Type | Description |
|---|---|---|
minimum_tick_size | string | Minimum price increment for this market |
Example
Section titled “Example”# Query parametercurl "https://api.openfish.fun/tick-size?token_id=0xabc123..."
# Path parametercurl "https://api.openfish.fun/tick-size/0xabc123..."