> ## 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 the `AirspaceAccount` metadata for a given property ID.



## OpenAPI

````yaml /specs/infrastructure.json get /solana/airspace/{id}
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/airspace/{id}:
    get:
      tags:
        - solana
      summary: Fetch the `AirspaceAccount` metadata for a given property ID.
      operationId: get_airspace
      parameters:
        - name: id
          in: path
          description: External property identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Airspace info
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SolanaAirspaceInfo'
        '404':
          description: Not found
components:
  schemas:
    SolanaAirspaceInfo:
      type: object
      required:
        - airspace_pda
        - owner
        - property_id
        - min_alt_m
        - max_alt_m
        - policy
        - fee_lamports
        - treasury
      properties:
        airspace_pda:
          type: string
          description: Base58 PDA of the AirspaceAccount
        owner:
          type: string
          description: Base58 owner pubkey
        property_id:
          type: string
          description: External property identifier
        min_alt_m:
          type: integer
          format: uint32
        max_alt_m:
          type: integer
          format: uint32
        policy:
          type: string
        fee_lamports:
          type: integer
          format: uint64
        treasury:
          type: string
          description: Base58 treasury pubkey

````