> ## Documentation Index
> Fetch the complete documentation index at: https://docs.resq.software/llms.txt
> Use this file to discover all available pages before exploring further.

# Fetch an existing `DeliveryRecord` account by its PDA address.



## OpenAPI

````yaml /specs/infrastructure.json get /solana/delivery/{pda}
openapi: 3.1.0
info:
  title: resq-api
  description: ''
  license:
    name: Apache-2.0
    identifier: Apache-2.0
  version: 0.1.0
servers: []
security: []
tags:
  - name: resq-backend
    description: ResQ Infrastructure API
  - name: auth
    description: Authentication endpoints
  - name: incidents
    description: Incident management endpoints
  - name: evidence
    description: Evidence management endpoints
  - name: blockchain
    description: Blockchain query endpoints
  - name: solana
    description: Solana program endpoints (PoD + airspace)
paths:
  /solana/delivery/{pda}:
    get:
      tags:
        - solana
      summary: Fetch an existing `DeliveryRecord` account by its PDA address.
      operationId: get_delivery
      parameters:
        - name: pda
          in: path
          description: Base58 DeliveryRecord PDA
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Delivery record
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SolanaDeliveryRecord'
        '404':
          description: Not found
components:
  schemas:
    SolanaDeliveryRecord:
      type: object
      required:
        - pda
        - data
        - tx
      properties:
        pda:
          type: string
          description: Base58 PDA of this record
        data:
          type: object
          required:
            - drone_pda
            - airspace_pda
            - ipfs_cid
            - latitude
            - longitude
            - altitude_m
            - delivered_at
          properties:
            drone_pda:
              type: string
            airspace_pda:
              type: string
            ipfs_cid:
              type: string
            latitude:
              type: number
              format: double
            longitude:
              type: number
              format: double
            altitude_m:
              type: integer
              format: uint32
            delivered_at:
              type: integer
              format: int64
        tx:
          $ref: '#/components/schemas/SolanaTransactionResponse'
    SolanaTransactionResponse:
      type: object
      required:
        - signature
        - slot
        - confirmation
        - fee_lamports
      properties:
        signature:
          type: string
          description: Base58-encoded transaction signature
        slot:
          type: integer
          format: uint64
          description: Slot number
        confirmation:
          type: string
          description: Confirmation status
        fee_lamports:
          type: integer
          format: uint64
          description: Transaction fee in lamports

````