/api/v1/sends/:send_id sends:create · packs:read The poll companion to POST /sends, and the record afterwards. Same row shape as the 202, with items[] filled in as the on-chain transactions land. Partner-scoped: a send that is not yours is a 404, not a 403.
GET /api/v1/sends/0 These inputs are shared across all docs pages, so an id entered here carries over.
{
"success": false,
"message": "Mystery partner API key required",
"error": "This endpoint requires an API key linked to a mystery partner account"
}curl -X GET 'https://service.rip.fun/api/v1/sends/0' \ -H 'X-API-Key: rip_…'
data)| Field | Description |
|---|---|
status | in_progress while items are still going out; complete when they all landed; complete_with_errors when any failed |
items[].status / tx_hash / error | PENDING → SENDING → SENT | FAILED, the transaction that delivered it, and the failure reason if it did not |
items[].buyback_registered_at / buyback_error | Whether the winner can sell that item back |
| Status | Code | When |
|---|---|---|
| 404 | not_found | not one of your sends |
| 400 | invalid_send_id | send_id is not a positive integer |
See Errors for the response envelope and the full code list.