Skip to main content
GET
/
public
/
v1
/
sales-lease-exchange
/
{listing_id}
curl "$base_url/public/v1/sales-lease-exchange/$listing_id" \
  -H "Authorization: Bearer $api_key" \
  -H "X-Organization-Id: $org_id"
{
  "id": "df1e...",
  "listing_type": "engine",
  "engine_model": { "name": "CFM56-5B", "manufacturer": "CFM International", ... },
  "title": "Low-cycle CFM56-5B",
  "msn": "ESN-9876",
  "condition": "Serviceable",
  "price_usd": 250000,
  "price": 250000,
  "country": "IN",
  "documents": [
    "https://.../listings-media/listings/df1e.../documents/abcd_specs.pdf"
  ],
  "images": null,
  "audience": null,
  "status": "active",
  "seller_org": { "name": "simplai", "contact_email": "...", ... },
  "created_at": "..."
}

Documentation Index

Fetch the complete documentation index at: https://teardowns.aero/docs/llms.txt

Use this file to discover all available pages before exploring further.

Returns the full listing record. Cross-org access returns 404 not_found never reveals existence in another org.

Headers

Authorization
string
required
Bearer tdao_live_…
X-Organization-Id
string
required
Your organization’s UUID.

Path parameters

listing_id
string (UUID)
required

Response

200 OK. The same shape returned by the create endpoint:
id
string (UUID)
org_id
string (UUID)
listing_type
string
aircraft | engine | apu for listings created through the public API. Legacy UI-created rows may still surface parts or landing_gear.
aircraft_type | engine_model | apu_model | landing_gear_type
object
Whichever matches the listing_type, populated with the full vocab row. landing_gear_type appears only on legacy listings; it can’t be created via the public API. Parts listings carry no vocab object.
title / description / msn / condition
string | null
price_usd
number | null
price
number | null
Alias for price_usd added so the browse-table column lines up.
country
string | null
documents / images
array of URLs | null
audience
array | null
audience_set_at
string (datetime) | null
status
string
draft | pending_review | active | under_offer | sold | leased | exchanged | suspended | archived
seller_org
object | null
Summary of the org that owns the listing (name, city, country, plus the posting user’s contact info).
created_at / updated_at / published_at / expires_at
datetime | null
curl "$base_url/public/v1/sales-lease-exchange/$listing_id" \
  -H "Authorization: Bearer $api_key" \
  -H "X-Organization-Id: $org_id"
{
  "id": "df1e...",
  "listing_type": "engine",
  "engine_model": { "name": "CFM56-5B", "manufacturer": "CFM International", ... },
  "title": "Low-cycle CFM56-5B",
  "msn": "ESN-9876",
  "condition": "Serviceable",
  "price_usd": 250000,
  "price": 250000,
  "country": "IN",
  "documents": [
    "https://.../listings-media/listings/df1e.../documents/abcd_specs.pdf"
  ],
  "images": null,
  "audience": null,
  "status": "active",
  "seller_org": { "name": "simplai", "contact_email": "...", ... },
  "created_at": "..."
}

See also