bids
Submit a new bid
Submit a bid for a specific auction slot. Validates all critical constraints:
- Temporal validity (before auction deadline)
- Economic validity (reserve price, value bounds)
- Gas constraints (fee_cap >= tip_cap)
- Entity limits (max bids per slot)
- Rate limits (max bids per time window)
- Auction state (must be in bidding state)
post/api/v1/bids
Request body
Example request
{
"slot": 1234567,
"value": "1000000000000000000",
"quantity": 100,
"gasFeeCap": "20000000000",
"gasTipCap": "20000000000",
"builderPublicKey": "0x1234567890abcdef1234567890abcdef12345678",
"metadata": {
"priority": "high",
"source": "api"
}
}Response
Bid submitted successfully
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
}