GET
/
rest
/
firms
/
{uuid}
Get Firm
curl --request GET \
  --url https://api.exchange.fairx.net/rest/firms/{uuid}
{
  "firm_uuid": "123e4567-e89b-12d3-a456-426614174000",
  "fcm_uuid": "abcdef12-3456-7890-abcd-ef1234567890",
  "name": "Acme Trading",
  "code": "ABC",
  "firm_role": "TRADING_FIRM",
  "max_order_size": 200,
  "self_match_prevention_mode": "CANCEL_AGGRESSING",
  "is24_by7_trading_disabled": false
}

Path Parameters

uuid
string
required

The firm's UUID

Example:

"e80d6a4e-af9f-4fcb-a819-3d22c7017279"

Response

Successfully retrieved firm

firm_uuid
string
Example:

"123e4567-e89b-12d3-a456-426614174000"

fcm_uuid
string
Example:

"abcdef12-3456-7890-abcd-ef1234567890"

name
string
Example:

"Acme Trading"

code
string
Example:

"ABC"

firm_role
enum<string>
Available options:
FCM,
TRADING_FIRM
Example:

"TRADING_FIRM"

max_order_size
integer
Example:

200

self_match_prevention_mode
enum<string>
Available options:
CANCEL_AGGRESSING,
CANCEL_RESTING,
CANCEL_BOTH
is24_by7_trading_disabled
boolean
Example:

false