Skip to main content
GET
/
nbx
/
v2
/
emm
/
transactions
Get user transactions
curl --request GET \
  --url https://api.novig.us/nbx/v2/emm/transactions
[
  {
    "id": "123e4567-e89b-12d3-a456-426614174000",
    "amount": 1738.42,
    "type": "DEPOSIT",
    "currency": "COIN",
    "createdAt": "2023-10-05T12:00:00Z",
    "orderId": "123e4567-e89b-12d3-a456-426614174000",
    "parlayId": "123e4567-e89b-12d3-a456-426614174001",
    "marketId": "123e4567-e89b-12d3-a456-426614174002"
  }
]

Query Parameters

currency
enum<string>

Currency of the transaction

Available options:
CASH,
COIN
limit
integer

Number of transactions to return

offset
integer

Offset of the transactions to return

beg
string<date-time>

Beginning timestamp for filtering transactions (UTC)

end
string<date-time>

End timestamp for filtering transactions (UTC)

type
enum<string>

Type of the transaction

Available options:
REALIZED_PNL,
ORDER_PLACED,
ORDER_CANCEL,
ORDER_REJECT,
SETTLEMENT,
RESETTLEMENT,
PRICE_IMPROVEMENT,
PUSH,
VOID,
WASH,
ADJUSTMENT

Response

200 - application/json

Successfully retrieved user transactions.

id
string
required

The unique identifier of the transaction

Example:

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

amount
number
required

The amount of the transaction

Example:

1738.42

type
string
required

The type of transaction

Example:

"DEPOSIT"

currency
string
required

The currency of the transaction

Example:

"COIN"

createdAt
string<date-time>
required

The timestamp when the transaction was created

Example:

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

orderId
string
required

The associated order ID, if applicable

Example:

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

parlayId
string
required

The associated parlay ID, if applicable

Example:

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

marketId
string
required

The associated market ID, if applicable

Example:

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