Skip to content

Fig Markets REST API (1.0)

Below are the available REST API endpoints for Fig Markets REST API

Languages
Servers
Test API

https://api.test.figmarkets.com/v1/

Production API

https://api.figmarkets.com/v1/

Operations
Operations
Operations

Request

Fetch a list of Fig Makers. For each maker, the endpoint returns their maker ID and the settlement options the maker is currently able to trade through.

curl -i -X GET \
  https://api.test.figmarkets.com/v1/exchange/maker

Responses

List of available makers with their settlement options

Bodyapplication/jsonArray [
makerstring(exchange.maker)required

Fig Maker identifier

settlementOptionsArray of strings(exchange.settlementOptions)required

Array of settlement options available for a maker

Example: ["BULL, DBT"]
]
Response
application/json
[ { "maker": "SIS", "settlementOptions": [] } ]
Operations