Skip to main content
GET
/
fiat-collections
curl "https://secureapi.gridlog.io/api/v1/fiat-collections?status=processing&page=1&limit=20" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "data": [
    {
      "id": "0a89dce0-d8d2-59a6-ab9d-1d9d8b4593e2",
      "businessId": "9ecf5248-17e7-4a2b-b5a8-3bd58ff0fe01",
      "status": "processing",
      "amount": "50.00",
      "currency": "NGN",
      "country": "NG",
      "walletAddress": "TFtbBrsWw5DGHoKQE8VY2WzTY3VnanQ2hz",
      "cryptoCurrency": "USDT",
      "cryptoNetwork": "TRC20",
      "cryptoAmount": "48.36654808",
      "bankName": "PAGA",
      "bankAccountNumber": "4550440202",
      "bankAccountName": "Ken Adams",
      "rate": "1617.300000",
      "expiresAt": "2025-03-21T21:05:13.393Z",
      "createdAt": "2025-03-21T20:55:13.393Z",
      "updatedAt": "2025-03-21T20:55:17.487Z"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 20
}
Returns a paginated list of fiat collections belonging to the authenticated business. Supports filtering by status and sorting.

Authentication

This endpoint supports both API key (X-API-Key header) and Bearer token (Authorization: Bearer <JWT>) authentication.
status
string
Filter by collection status. One of: pending, processing, completed, expired, failed, refunded
page
number
default:"1"
Page number (1-based)
limit
number
default:"20"
Items per page (1-100)
sortOrder
string
default:"DESC"
Sort order by creation date: ASC or DESC
curl "https://secureapi.gridlog.io/api/v1/fiat-collections?status=processing&page=1&limit=20" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "data": [
    {
      "id": "0a89dce0-d8d2-59a6-ab9d-1d9d8b4593e2",
      "businessId": "9ecf5248-17e7-4a2b-b5a8-3bd58ff0fe01",
      "status": "processing",
      "amount": "50.00",
      "currency": "NGN",
      "country": "NG",
      "walletAddress": "TFtbBrsWw5DGHoKQE8VY2WzTY3VnanQ2hz",
      "cryptoCurrency": "USDT",
      "cryptoNetwork": "TRC20",
      "cryptoAmount": "48.36654808",
      "bankName": "PAGA",
      "bankAccountNumber": "4550440202",
      "bankAccountName": "Ken Adams",
      "rate": "1617.300000",
      "expiresAt": "2025-03-21T21:05:13.393Z",
      "createdAt": "2025-03-21T20:55:13.393Z",
      "updatedAt": "2025-03-21T20:55:17.487Z"
    }
  ],
  "total": 1,
  "page": 1,
  "limit": 20
}
data
array
Array of fiat collection objects. Each object contains the same fields as the Get Collection response.
total
number
Total number of collections matching the filters
page
number
Current page number
limit
number
Items per page