For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Home
    • API Basics
  • Products
    • Global Fiat Payouts
    • On-Ramps and Off-Ramps
  • Integration Guides
    • Global payouts integration guide
    • Country-specific details
  • API Reference
      • GETList Conversions
LogoLogo
API ReferenceConversions

List Conversions

GET
https://api.latitude.xyz/v1/conversions
GET
/v1/conversions
$curl https://api.latitude.xyz/v1/conversions \
> -H "Content-Type: application/json"
1{
2 "data": [
3 {
4 "id": "conv_9f8b7c6d-1234-4a56-b789-0a1b2c3d4e5f",
5 "conversion_account_id": "acct_4e5f6a7b-89cd-0123-4567-89abcdef0123",
6 "individual_id": "indiv_12345678-abcd-ef01-2345-6789abcdef01",
7 "status": "pending",
8 "deposit": {
9 "amount": "1500.00",
10 "currency": "MXN",
11 "received_at": "2024-01-15T09:30:00Z"
12 },
13 "payout": {
14 "amount": "75.00",
15 "currency": "USDC",
16 "payout_account_id": "payout_abcdef12-3456-7890-abcd-ef1234567890",
17 "tx_hash": "0x4e3b2a1c5d6f7890abcdef1234567890abcdef1234567890abcdef1234567890",
18 "initiated_at": "2024-01-15T10:00:00Z",
19 "completed_at": "2024-01-15T10:15:00Z"
20 },
21 "total_fee": "3.00",
22 "fee_currency": "mxn",
23 "exchange_rate": "20.00",
24 "created_at": "2024-01-15T09:00:00Z",
25 "updated_at": "2024-01-15T09:45:00Z"
26 }
27 ],
28 "has_next_page": true,
29 "cursor": "eyJwYWdlIjoxLCJpZCI6ImNvbnZfOWY4YjdjNmQtMTIzNC00YTU2LWI3ODktMGExYjJjM2Q0ZTVmIn0="
30}

Retrieves a list of conversions (on-ramp transfers) for your customer account

Was this page helpful?
Previous
Built with

Query parameters

limitintegerOptional1-100Defaults to 20

Number of records per page (max 100)

cursorstringOptional
Cursor for pagination

Response

List Conversions
datalist of objects
Array of conversions for the current page
has_next_pageboolean
Whether there are more pages available
cursorstring or null

Cursor for fetching the next page (null if no next page)

Errors

400
Bad Request Error