Skip to main content
GET
/
solana
/
delivery
/
{pda}
Fetch an existing `DeliveryRecord` account by its PDA address.
curl --request GET \
  --url https://api.example.com/solana/delivery/{pda}
{
  "pda": "<string>",
  "data": {
    "drone_pda": "<string>",
    "airspace_pda": "<string>",
    "ipfs_cid": "<string>",
    "latitude": 123,
    "longitude": 123,
    "altitude_m": 123,
    "delivered_at": 123
  },
  "tx": {
    "signature": "<string>",
    "slot": 123,
    "confirmation": "<string>",
    "fee_lamports": 123
  }
}

Path Parameters

pda
string
required

Base58 DeliveryRecord PDA

Response

Delivery record

pda
string
required

Base58 PDA of this record

data
object
required
tx
object
required