bids
Get bids with filtering
Retrieve bids with optional filtering by slot, status, entity, with pagination
get/api/v1/bids
Query parameters
slotnumber
Example:1234567
Filter by slot number
status'pending' | 'submitted' | 'validated' | 'updated' | 'winning' | 'partial' | 'lost' | 'cancelled' | 'expired'
Example:pending
Filter by bid status
entityIdstring
Example:entity-123
Filter by entity ID
limitnumber
Example:20
Number of results to return
offsetnumber
Number of results to skip
Response
List of bids
Example response
[
{
"id": "tz4a98xxat96iws9zmbrgj3a",
"slot": 1234567,
"entityId": "entity-123",
"value": "1000000000000000000",
"quantity": 100,
"gasFeeCap": "20000000000",
"gasTipCap": "2000000000",
"builderPublicKey": "0x1234567890abcdef...",
"status": "pending",
"submittedAt": "2024-01-01T00:00:00.000Z",
"updatedAt": "2024-01-01T00:00:00.000Z",
"validatedAt": "2024-01-01T00:00:05.000Z",
"validFrom": "2024-01-01T00:00:00.000Z",
"validUntil": "2024-01-01T00:00:12.000Z",
"version": 1,
"nonce": "1234567890",
"metadata": {
"priority": "high",
"source": "api"
},
"isActive": true,
"isModifiable": true
}
]