Discover/GetFPV API
live

GetFPV APIgetfpv.com

Search and browse GetFPV's catalog of FPV drone components via API. Get product details, specs, pricing, stock status, and category listings across 7 endpoints.

Endpoint health
verified 3d ago
search_products
get_flight_controllers
get_product_details
get_new_products
get_motors
7/7 passing latest checkself-healing
Endpoints
7
Updated
18d ago

What is the GetFPV API?

The GetFPV API provides 7 endpoints for searching and browsing GetFPV's catalog of FPV drone components, including motors, flight controllers, and accessories. The get_product_details endpoint returns structured specifications, multiple images, brand, SKU, formatted price, and real-time stock status for any individual product. Category browsing and full-text search are available with zero-indexed pagination across all endpoints.

Try it
Page number (zero-indexed).
Maximum results per page.
Search keyword to match against product names and descriptions.
api.parse.bot/scraper/c2e4196d-34d8-49cb-ab61-e02e70e36676/<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/c2e4196d-34d8-49cb-ab61-e02e70e36676/search_products?page=0&limit=5&query=motor' \
  -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 getfpv-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: GetFPV SDK — bounded, re-runnable; every call capped."""
from parse_apis.GetFPV_API import GetFPV, Product, ProductSummary, NotFoundError

client = GetFPV()

# Search for brushless motors — limit caps TOTAL items fetched.
for item in client.products.search(query="brushless motor", limit=5):
    print(item.name, item.price, item.stock_status)

# Drill-down: take ONE item with .first(), then get full details.
first = client.products.flight_controllers(limit=1).first()
if first:
    detail = first.details()
    print(detail.name, detail.brand, detail.price, detail.specifications)

# Browse sale items
for sale_item in client.products.on_sale(limit=3):
    print(sale_item.name, sale_item.price, sale_item.thumbnail)

# Typed error handling on a direct product lookup
try:
    product = client.products.get(url="https://www.getfpv.com/nonexistent-product.html")
    print(product.name, product.brand)
except NotFoundError as exc:
    print(f"Product not found: {exc}")

print("exercised: products.search / products.flight_controllers / details / products.on_sale / products.get")
All endpoints · 7 totalmissing one? ·

Full-text search across all product categories. Returns paginated product listings matching the query keyword. Each result includes name, SKU, price, stock status, URL, thumbnail, brand, and category hierarchy. Paginated zero-indexed.

Input
ParamTypeDescription
pageintegerPage number (zero-indexed).
limitintegerMaximum results per page.
queryrequiredstringSearch keyword to match against product names and descriptions.
Response
{
  "type": "object",
  "fields": {
    "products": "array of product summary objects with name, sku, price, stock_status, stock_qty, url, thumbnail, brand, and categories",
    "total_hits": "integer total matching products",
    "total_pages": "integer total pages available",
    "current_page": "integer current page number (zero-indexed)"
  },
  "sample": {
    "data": {
      "products": [
        {
          "sku": [
            "22798",
            "22792",
            "22790"
          ],
          "url": "https://www.getfpv.com/t-motor-t4944-3-blade-propeller-set-of-4-1-5mm-shaft.html",
          "name": "T-Motor T4944 3-Blade Propeller (Set of 4) - 1.5mm Shaft",
          "brand": "Tiger Motors",
          "price": 0.99,
          "stock_qty": 0,
          "thumbnail": "https://www.getfpv.com/media/catalog/product/cache/ad237c46d531aabdb51b70c3aca03811/t/-/t-motor-t4944-3-blade-propeller-_set-of-4_---1.5mm-shaft-_thumbnail_.jpg",
          "categories": {
            "level0": [
              "Propellers",
              "GetFPV Distribution",
              "Brands We Love"
            ],
            "level1": [
              "Propellers /// Mini Quad Propellers",
              "GetFPV Distribution /// Tiger Motors",
              "Brands We Love /// T-Motor"
            ]
          },
          "stock_status": "In Stock"
        }
      ],
      "total_hits": 1836,
      "total_pages": 50,
      "current_page": 0
    },
    "status": "success"
  }
}

About the GetFPV API

Search and Category Browsing

The search_products endpoint accepts a query string and returns paginated results including product name, sku, price, stock_status, stock_qty, thumbnail, brand, and a categories array showing the full category hierarchy. Results expose total_hits and total_pages alongside current_page so you can walk through large result sets. The get_category_products endpoint uses the same response shape but filters by category — pass a flat name like 'Motors' or a hierarchical path like 'Electronics /// Flight Controllers' using /// as the level separator. Omitting the category parameter returns the full product catalog.

Convenience Category Endpoints

Three dedicated endpoints shortcut common category queries: get_flight_controllers targets the Electronics /// Flight Controllers subcategory, get_motors targets the top-level Motors category, and get_sale_products returns currently discounted items. get_new_products returns the newest additions to the store, ordered by recency. All four share the same paginated response shape — products array, total_hits, total_pages, and current_page — and accept optional page and limit parameters.

Product Detail

The get_product_details endpoint accepts either a full URL (https://www.getfpv.com/product-name.html) or just the slug path. It returns a richer payload than listing endpoints: an images array of full-resolution URLs, a description string, and a specifications object with key-value pairs extracted from the product page — useful for comparing motor KV ratings, stack dimensions, or ESC amperage across components. stock_status is normalized to either 'In Stock' or 'Out of Stock'.

Reliability & maintenanceVerified

The GetFPV API is a managed, monitored endpoint for getfpv.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when getfpv.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 getfpv.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
3d ago
Latest check
7/7 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 price comparison tool for FPV drone components using search_products with the price and brand fields.
  • Monitor stock availability for specific flight controllers by polling get_product_details and checking stock_status.
  • Aggregate and display new FPV product arrivals by calling get_new_products on a scheduled interval.
  • Populate a drone build configurator with motor specs by querying get_motors and fetching specifications via get_product_details.
  • Scrape current sale prices from get_sale_products to alert users when discounted items match a target category.
  • Index the full GetFPV catalog for site search by iterating get_category_products without a category param across pages.
  • Compare technical specs across flight controllers by retrieving the specifications object from multiple get_product_details calls.
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 GetFPV have an official developer API?+
GetFPV does not publish a public developer API or documented data feed. This Parse API is the structured programmatic interface for accessing their product catalog.
What does get_product_details return that listing endpoints do not?+
The get_product_details endpoint returns fields not available in listing results: a full images array, a description string, and a specifications object containing structured key-value pairs like motor KV, weight, dimensions, or ESC current rating depending on the product type.
How does category filtering work in get_category_products?+
Pass a flat category name like 'Motors' for top-level categories, or use the /// separator for subcategories — for example, 'Electronics /// Flight Controllers'. Omitting the category parameter entirely returns all products across the catalog, paginated by page and limit.
Are customer reviews or ratings available from any endpoint?+
Not currently. The API covers product listings, specifications, pricing, stock status, and images, but does not expose user review text or rating scores. You can fork this API on Parse and revise it to add an endpoint that retrieves review data for individual products.
Is sorting or filtering by price range supported in search or category endpoints?+
Not currently. The search_products and get_category_products endpoints accept query, category, page, and limit parameters but do not support price range filters or sort order parameters. You can fork this API on Parse and revise it to add price-based filtering to the response.
Page content last updated . Spec covers 7 endpoints from getfpv.com.
Related APIs in EcommerceSee all →
sparkfun.com API
Search SparkFun's electronics catalog, view product details, pricing, and stock availability, and discover today's featured deals. Browse product categories to find components, tools, and kits while staying updated on current promotions.
adafruit.com API
Browse and search the complete Adafruit electronics catalog to find product details, pricing, availability, and stock status across categories like magnets and motor components. Discover new arrivals and featured products to stay updated on the latest electronics and components available.
garmin.com API
Search and browse Garmin products across categories, view detailed specs and pricing, compare models, and discover new items and promotions. Get comprehensive product information including what's in the box, accessories, and featured items all in one place.
gamestop.com API
Search GameStop's catalog for games and merchandise, browse products by category, view detailed product information including reviews, and discover what's available—all with seamless access that handles Cloudflare protection automatically.
corsair.com API
Search and filter Corsair's gaming peripherals and PC components catalog by keywords, category, and product attributes like price and specs. Browse detailed product information, compare options, and easily navigate through results with sorting and pagination to find exactly what you need.
abercrombie.com API
Search and browse Abercrombie & Fitch products across categories, new arrivals, and clearance items while retrieving detailed product information like pricing and availability. Access curated collections and find exactly what you're looking for with powerful search capabilities.
bhphotovideo.com API
Search and browse B&H Photo's massive inventory of cameras, electronics, and photography gear with instant access to pricing, specifications, images, and customer reviews. Filter products by category, compare detailed specs, and discover used items all in one integrated platform.
megekko.be API
Search and browse the full Megekko product catalog, view detailed specs, pricing, and stock availability. Browse by category, use keyword search to find specific products, or explore shortcut endpoints for popular categories like GPUs and CPUs.