API Reference

List gas station wallets

GET /gas-stations/wallets

Get a paginated list of gas station wallets, with filtering and sorting.

Query parameters

NameTypeDescription
filter[]optionalarray<string>Filter conditions (AND semantics). Format: `field:operator:value`.
filterOr[]optionalarray<string>Filter conditions (OR semantics). Format: `field:operator:value`.
sort[]optionalarray<string>Sort fields. Format: `field:direction` (`asc`/`desc`).
pageoptionalintegerdefault: 1Page number (default 1).
limitoptionalintegerdefault: 20Items per page (default 20, max 100).

Responses

A page of gas station wallets.

    • idstring
    • addressstring
    • network_idstring
    • network_symbolstring
    • created_atstringformat: date-time
  • Page-based pagination metadata returned by payout and gas-station list endpoints.

    • pageinteger
    • limitinteger
    • total_itemsinteger
    • total_pagesinteger
    • has_nextboolean
    • has_prevboolean
Request
curl "https://api.stridge.dev/v1/gas-stations/wallets" \
  -H "X-API-Key: $STRIDGE_API_KEY"

Set your key as STRIDGE_API_KEY (sent as X-API-Key).

Response200
"id": "550e8400-e29b-41d4-a716-446655440000",
"address": "0x742d35Cc6634C0532925a3b844Bc9e7595f2bD58",
"network_id": "60",
"network_symbol": "ETH",
"created_at": "2024-01-01T00:00:00Z"
}
],
"page": 1,
"limit": 20,
"total_items": 100,
"total_pages": 5,
"has_next": true,
"has_prev": false
}
}