Skip to main content
GET
/
bookings
/
{id}
Get Booking
curl --request GET \
  --url https://api.example.com/bookings/{id}

Request

curl https://api.midasprotocol.org/bookings/booking-uuid \
  -H "Authorization: Bearer pp_your_key"

Response

{
  "id": "uuid", "status": "CONFIRMED",
  "confirmationCode": "BK-ABC123",
  "serviceName": "Translation Service",
  "totalAmount": "25.00", "currency": "USDC", "fees": "0.50",
  "transactions": [...], "escrow": { ... }
}