request_id field. This ID points to a routing receipt — a cryptographically signed record created by the Coordinator that captures which GPU node served your request, what was paid, and the proof that the Coordinator attested to the outcome. Routing receipts exist so you never have to take anyone’s word for what happened to your inference call.
What a routing receipt contains
A unique identifier for the request. Returned in every API response and used to look up the full receipt.
The peer ID of the GPU node that won the auction and served your inference.
The model ID that was used to process the request (e.g.,
llama3.2:1b).ISO 8601 timestamp of when the request was dispatched by the Coordinator.
The amount settled to the winning node for this inference job.
A cryptographic signature produced by the Coordinator inside its AWS Nitro Enclave. Use this to verify the receipt was produced by a legitimate, unmodified Coordinator instance.
How to verify a receipt
Copy your request_id
Every response from
https://api.pinaivu.com/v1/chat/completions includes a request_id in the response body or headers. Copy it.Visit the Pinaivu Explorer
Open https://explorer.pinaivu.com in your browser.
Paste your request_id
Enter the
request_id in the search field and submit. The Explorer fetches the full routing receipt from the network.Using the API
Routing receipts are also accessible programmatically viaGET /v1/receipts/{request_id} — useful for automated auditing, compliance workflows, or integrating receipt verification into your own systems.
node_id, model, timestamp, payment_amount, and coordinator_signature.
See the Receipts API reference for full request and response schemas.