Skip to main content
GET
https://api.usedroptrail.com
/
delivery-requests
/
{id}
Get Delivery Request
curl --request GET \
  --url https://api.usedroptrail.com/delivery-requests/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "status": "<string>",
  "from_location": "<string>",
  "to_location": "<string>",
  "receiver_phone": "<string>",
  "estimated_weight": 123,
  "package_count": 123,
  "description": "<string>",
  "delivery_deadline": "<string>",
  "is_interstate": true,
  "created_at": "<string>",
  "sender_id": "<string>",
  "estimated_price": 123
}
Get detailed information about a specific delivery request using its ID.

Path Parameters

id
string
required
The unique identifier of the delivery request

Response

id
string
The unique identifier for the delivery request
status
string
Current status of the delivery request (PENDING, ACCEPTED, IN_TRANSIT, DELIVERED, CANCELLED)
from_location
string
Full pickup location address
to_location
string
Full delivery destination address
receiver_phone
string
Phone number of the recipient in E.164 format
estimated_weight
number
Estimated weight of the package in kilograms
package_count
integer
Number of packages in the delivery
description
string
Package contents description and handling instructions
delivery_deadline
string
ISO 8601 formatted delivery deadline
is_interstate
boolean
Whether the delivery crosses state lines
created_at
string
ISO 8601 timestamp when the request was created
sender_id
string
ID of the user who created the request
estimated_price
number
Estimated delivery price in USD

Example Response