Skip to main content
GET
/
nbx
/
v2
/
emm
/
fills
/
all
Get all my fills
curl --request GET \
  --url https://api.novig.us/nbx/v2/emm/fills/all
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "orderId": "123e4567-e89b-12d3-a456-426614174001",
    "price": 0.225,
    "qty": 75,
    "createdAt": "2023-10-05T12:00:00Z",
    "isWash": false,
    "isTaker": true,
    "marketId": "123e4567-e89b-12d3-a456-426614174002",
    "outcomeId": "123e4567-e89b-12d3-a456-426614174003"
  }
]

Query Parameters

currency
enum<string>

Currency of the fill

Available options:
CASH,
COIN
limit
integer

Number of fills to return

offset
integer

Offset of the fills to return

beg
string<date-time>

Beginning timestamp for filtering fills (UTC)

end
string<date-time>

End timestamp for filtering fills (UTC)

marketStatus
enum<string>

Market status of the fill

Available options:
OPEN,
CLOSED,
SETTLED
outcomeStatus
enum<string>

Outcome status of the fill

Available options:
TBD,
WIN,
LOSS,
PUSH

Response

Successfully retrieved all fills for the user

id
string

The ID of the fill

Example:

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

orderId
string

The ID of the order that was filled

Example:

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

price
number

The price at which the fill was executed

Example:

0.225

qty
number

The quantity that was filled

Example:

75

createdAt
string<date-time>

The timestamp when the fill occurred

Example:

"2023-10-05T12:00:00Z"

isWash
boolean

Whether the fill is a wash trade

Example:

false

isTaker
boolean

Whether the fill is the taker

Example:

true

marketId
string

The ID of the related market

Example:

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

outcomeId
string

The ID of the related outcome

Example:

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