Skip to main content
GET
/
api
/
public
/
v1
/
transactions
Listar transacciones del usuario
curl --request GET \
  --url https://api.wallbit.io/api/public/v1/transactions \
  --header 'X-API-Key: <api-key>'
{
  "data": {
    "data": [
      {
        "uuid": "550e8400-e29b-41d4-a716-446655440000",
        "type_id": 1,
        "source_currency": {
          "code": "USD",
          "alias": "USD"
        },
        "dest_currency": {
          "code": "USD",
          "alias": "USD"
        },
        "source_amount": 100,
        "dest_amount": 100,
        "status": "COMPLETED",
        "created_at": "2024-01-15T10:30:00.000000Z",
        "comment": null
      }
    ],
    "pages": 5,
    "current_page": 1,
    "count": 50
  }
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Obtain your API key from the Wallbit dashboard under Settings → API Keys.

Query Parameters

page
integer
default:1

Número de página (default: 1)

Required range: x >= 1
limit
enum<integer>
default:10

Cantidad de resultados por página

Available options:
10,
20,
50
status
string

Filtrar por estado de transacción

Example:

"COMPLETED"

type
string

Filtrar por tipo de transacción

Example:

"TRADE"

currency
enum<string>

Filtrar por moneda

Available options:
USD,
EUR,
ARS,
MXN,
USDC,
USDT,
BOB,
COP,
PEN,
DOP
Example:

"USD"

from_date
string<date>

Fecha inicial del rango (formato: Y-m-d)

Example:

"2024-01-01"

to_date
string<date>

Fecha final del rango (formato: Y-m-d)

Example:

"2024-12-31"

from_amount
number

Monto mínimo a filtrar

Required range: x >= 0
Example:

100

to_amount
number

Monto máximo a filtrar

Required range: x >= 0
Example:

1000

Response

List of transactions

data
object