Skip to main content
GET
/
broker
/
instruments
/
available
List Available Instruments
curl --request GET \
  --url https://api.{your-broker}.slate-labs.com/broker/instruments/available
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "symbol": "<string>",
    "display_name": "<string>",
    "category": "<string>",
    "base_currency": "<string>",
    "quote_currency": "<string>",
    "unit_currency": "USD",
    "digits": 5,
    "pip_size": 123,
    "contract_size": 100000,
    "min_lot": 0.01,
    "max_lot": 100,
    "lot_step": 0.01,
    "margin_rate": 123,
    "spread": 0,
    "swap_type": "pips",
    "swap_long": 0,
    "swap_short": 0,
    "stale_threshold_ms": 10000,
    "is_active": true,
    "is_enabled": true,
    "asset_class": "other",
    "provider": "<string>",
    "provider_symbol": "<string>",
    "last_bid": 123,
    "last_ask": 123,
    "last_tick_at": "2023-11-07T05:31:56Z"
  }
]

Response

200 - application/json

Successful Response

id
string<uuid>
required
symbol
string
required
display_name
string | null
category
string | null
base_currency
string | null
quote_currency
string | null
unit_currency
string | null
default:USD
digits
integer | null
default:5
pip_size
number | null
contract_size
integer | null
default:100000
min_lot
number | null
default:0.01
max_lot
number | null
default:100
lot_step
number | null
default:0.01
margin_rate
number | null
spread
number | null
default:0
swap_type
string | null
default:pips
swap_long
number | null
default:0
swap_short
number | null
default:0
stale_threshold_ms
integer | null
default:10000
is_active
boolean | null
default:true
is_enabled
boolean
default:true
asset_class
string | null
default:other
provider
string | null
provider_symbol
string | null
last_bid
number | null
last_ask
number | null
last_tick_at
string<date-time> | null