Discover/Boeing API
live

Boeing APIshop.boeing.com

Access Boeing's parts catalog via API. Search parts, retrieve technical specs, shipping attributes (ITAR, ECCN, hazmat), categories, brands, and suppliers.

Endpoint health
verified 7d ago
get_search_autocomplete
get_part_shipping_details
list_product_categories
get_homepage
get_overstock_parts
12/12 passing latest checkself-healing
Endpoints
12
Updated
22d ago

What is the Boeing API?

This API exposes 12 endpoints covering Boeing's shop.boeing.com parts catalog, from browsing top-level categories with list_product_categories to retrieving per-part technical data and shipping classification fields like ECCN, ITAR status, and hazmat flags. You can search by keyword, drill into subcategories, enumerate brands and suppliers, and pull full product detail records identified by supplier-prefixed part IDs such as BDSIS4_BACB30LU4-4.

Try it

No input parameters required.

api.parse.bot/scraper/d33f3231-55cd-4753-9a30-f352d00e3806/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d33f3231-55cd-4753-9a30-f352d00e3806/get_homepage' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace shop-boeing-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Shop Boeing API SDK — browse categories, search parts, inspect details."""
from parse_apis.shop_boeing_api import Boeing, CategorySlug, PartNotFound

boeing = Boeing()

# List all top-level product categories
for cat in boeing.categories.list(limit=5):
    print(cat.name, cat.count)

# Drill into a category using the enum, then get its subcategories
airframe = boeing.category(CategorySlug.AIRFRAME_PARTS).details()
print(airframe.name, airframe.total_products)

# Get a subcategory detail from the category detail
subcat = airframe.subcategories.get(subcategory_id="filters")
print(subcat.name, subcat.total_products, subcat.subcategory_id)

# Autocomplete a partial search term
for suggestion in boeing.parts.autocomplete(term="hydraulic", limit=3):
    print(suggestion.value)

# Search for parts by keyword
part = boeing.parts.search(query="hydraulic seal", limit=1).first()
if part:
    print(part.code, part.name, part.leadtime, part.in_stock)

# Get technical info for a known part, with error handling
try:
    info = boeing.part("BDSIS4_3039524-1").technical_info()
    print(info.lead_time, info.mfg_certified)
except PartNotFound as exc:
    print(f"Part not found: {exc}")

# Get shipping details
shipping = boeing.part("BDSIS4_3039524-1").shipping_details()
print(shipping.is_hazmat, shipping.eccn)

# List suppliers
for supplier in boeing.suppliers.list(limit=5):
    print(supplier.name, supplier.count)

print("exercised: categories.list / category.details / subcategories.get / parts.autocomplete / parts.search / technical_info / shipping_details / suppliers.list")
All endpoints · 12 totalmissing one? ·

Retrieve the Shop Boeing homepage content including top-level navigation categories. Returns the same data as list_product_categories.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "categories": "array of category objects with name, count, and query fields"
  },
  "sample": {
    "data": {
      "categories": [
        {
          "name": "Airframe Parts",
          "count": 6037,
          "query": "filter:relevance:category:parts%7Cairframe-parts"
        },
        {
          "name": "Engines",
          "count": 3739,
          "query": "filter:relevance:category:parts%7Cengines"
        }
      ]
    },
    "status": "success"
  }
}

About the Boeing API

Catalog Navigation

list_product_categories and get_homepage both return the same top-level category array — each object carries a name, a count of products, and a query field. From there, get_category accepts a category slug (e.g. airframe-parts, engines, electrical) and returns subcategories with product counts. get_subcategory goes one level deeper, requiring both a category_id and a subcategory_id to return sub-subcategory breakdowns and a total_products string.

Part Search and Discovery

search_parts accepts a query string plus optional page (0-indexed) and page_size parameters. It returns a products array — each product includes code, name, description, and absoluteUrl — along with a pagination object (totalResults, currentPage, totalPages) and a facets array for further filtering. Note that broad, high-volume search terms like bolt may time out; narrower terms return more reliably. get_search_autocomplete accepts a partial term and returns up to 6 suggestion objects, each with a value field.

Part Details and Technical Attributes

Part identifiers follow the format SUPPLIER_PARTNUMBER, where the supplier prefix is one of BDI, BDSIS4, or BPP. These IDs are discoverable from the code field in search_parts results. get_part_details returns the full product record including aircraftMakes, aircraftModels, and boeingProductVariantOption arrays. get_part_technical_info isolates fields like leadTime, ataNumber, ataChapter, and mfgCertified. get_part_shipping_details returns eccn, itar, dryIce, and isHazmat — all nullable strings.

Brands, Suppliers, and Overstock

list_brands and list_suppliers each return a flat array of objects with name, count, and query fields, giving a full view of catalog sourcing. get_overstock_parts returns paginated overstock listings in the same product-array shape as search_parts, including facets and pagination metadata.

Reliability & maintenanceVerified

The Boeing API is a managed, monitored endpoint for shop.boeing.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when shop.boeing.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official shop.boeing.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
12/12 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a parts procurement tool that filters Boeing catalog items by ATA chapter using get_part_technical_info
  • Flag ITAR-controlled or hazmat parts in an export compliance workflow using get_part_shipping_details
  • Aggregate supplier and brand coverage statistics from list_suppliers and list_brands for vendor analysis
  • Power a category-browse interface for MRO operators using get_category and get_subcategory
  • Monitor overstock inventory with get_overstock_parts to surface discounted parts
  • Build a part search autocomplete feature using get_search_autocomplete with partial terms
  • Cross-reference aircraft model compatibility by extracting aircraftMakes and aircraftModels from get_part_details
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does shop.boeing.com have an official developer API?+
Boeing does not publish a public developer API for shop.boeing.com. There is no documented REST or GraphQL interface available to third-party developers for accessing the parts catalog programmatically.
What does `get_part_shipping_details` return, and are the fields always populated?+
get_part_shipping_details returns four fields: eccn (Export Control Classification Number), itar (ITAR control status), dryIce (whether dry ice shipping applies), and isHazmat (hazardous material flag). All four are nullable strings — many parts will return null for one or more of these fields depending on how the listing is classified.
How do I discover valid part IDs to use with `get_part_details` or `get_part_technical_info`?+
Run a search_parts query and inspect the code field on each product object. That value is the part ID in SUPPLIER_PARTNUMBER format (e.g. BDSIS4_BACB30LU4-4). The supplier prefix will be one of BDI, BDSIS4, or BPP.
Does the API return pricing or availability/stock quantity for parts?+
Not currently. The endpoints cover catalog metadata, technical attributes, shipping classifications, and category structure, but do not expose list prices or real-time stock quantities. You can fork the API on Parse and revise it to add an endpoint targeting product pricing data if that field becomes accessible on the source.
Are there any known reliability issues with `search_parts`?+
Yes. Very broad single-word queries — the documentation explicitly calls out bolt as an example — may time out due to the volume of matching results upstream. Using more specific multi-word terms or part-number fragments reliably returns results. Pagination is 0-indexed via the page parameter.
Page content last updated . Spec covers 12 endpoints from shop.boeing.com.
Related APIs in EcommerceSee all →
octopart.com API
Search electronic parts and get instant access to pricing, stock levels, and specs from multiple distributors in one place. Browse manufacturers and categories to compare availability and find the best deals on components you need.
getfpv.com API
Search and browse products from GetFPV's catalog of FPV drone components and accessories. Retrieve listings by keyword or category, view detailed product specifications, pricing, and stock status, and explore new arrivals and current sales.
shop.deere.com API
Search and browse the John Deere parts catalog across categories and equipment models, with access to real-time pricing, availability, maintenance kits, and related part recommendations.
mcmaster.com API
Search McMaster-Carr's industrial supply catalog to discover products by category, view detailed listings with part numbers and prices, and apply filters to find exactly what you need. Look up specific part numbers to get complete product information and pricing in seconds.
backcountry.com API
backcountry.com API
brookstone.com API
Search and browse Brookstone's catalog of products with full-text search, filters, sorting, and pagination to find exactly what you need. Get instant search suggestions and access detailed product information including pricing, descriptions, and availability.
bidorbuy.co.za API
Search and browse products on Bob Shop, view detailed product information, seller profiles and ratings, explore category listings, and discover current promotions. Get search suggestions and navigate the complete product catalog to find exactly what you're looking for.
grainger.com API
grainger.com API