Skip to main content
POST
/
nbx
/
v2
/
emm
/
strike-requests
cURL Example
curl -X POST "$API/emm/strike-requests" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "marketId": "550e8400-e29b-41d4-a716-446655440000",
    "strike": 300.5
}'
{
  "message": "Strike request created for TOR @ CLE at 300.5"
}

Body

application/json
marketId
string<uuid>
required

The ID of an existing market to request a new strike for

Example:

"550e8400-e29b-41d4-a716-446655440000"

strike
number
required

The requested strike value. Accepts whole numbers (e.g. 300) or half-points (e.g. 300.5). Whole numbers are automatically converted to .5 strikes.

Example:

300.5

Response

Strike request submitted

message
string

Confirmation message with the event description and final strike value

Example:

"Strike request created for TOR @ CLE at 300.5"