For the complete documentation index, see llms.txt. This page is also available as Markdown.

5. Creating the APIs

Quote Services, Hedger API, Hedger Websockets

As a Solver integrating with SYMMIO, you’ll need to include REST APIs, to allow frontends to display data like available symbols, retrieving open interest and notional caps.

REST APIs

Detailed documentation about REST API endpoint queries and returned data can be found in the following section. It's recommended that solvers follow the same structure in their endpoints to integrate with frontends easily.

The full list of endpoints that solvers can integrate is here, however not all are essential for an implementation. Essential endpoints are listed below:

GET Contract Symbols: /contract-symbols

GET Open Interest: /open-interest

GET Notional Cap by Symbol: /notional_cap/{symbol_id}

GET Price Range by Symbol: /price-range/{symbol}

GET Locked Parameters for a Symbol: /get_locked_params/{symbol}?leverage={leverage}

GET Funding Information: /get_funding_info

GET Error Codes: /error_codes

POST Position Information: /position_state/<offset>/<size>

Last updated