Discover/Motion API
live

Motion APImotion.com

Access Motion.com's industrial parts catalog via API. Search products, get specs, browse categories, find substitute parts, and locate branch locations across North America.

Endpoint health
verified 7d ago
browse_category
get_substitute_products
get_autocomplete_suggestions
find_locations
get_product_by_mfr_part_number
9/9 passing latest checkself-healing
Endpoints
9
Updated
18d ago

What is the Motion API?

The Motion.com API exposes 9 endpoints covering product search, detailed specifications, category browsing, substitute parts, and branch location data from one of North America's largest industrial distributors. The search_products endpoint returns paginated results with pricing, inventory status, and attribute data across millions of industrial components including bearings, belts, motors, and fluid power products.

Try it
Page number for pagination.
Results per page.
Search keyword or part number.
api.parse.bot/scraper/e2830288-91b0-4411-a796-243225516c9a/<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/e2830288-91b0-4411-a796-243225516c9a/search_products?page=1&limit=5&query=bearing' \
  -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 motion-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: Motion.com Industrial Parts API — search parts, drill into details, explore categories."""
from parse_apis.Motion_com_Industrial_Parts_API import Motion, ProductNotFound

client = Motion()

# Search for ball bearings — limit caps total items fetched across all pages.
for product in client.products.search(query="6205-2RS", limit=3):
    print(product.name, product.brand, product.price)

# Drill into the first result for full specifications.
item = client.products.search(query="6205-2RS", limit=1).first()
if item:
    full = item.details()
    print(full.name, full.inventory_status, full.market_price)

    # Get technical specifications as a flat map.
    specs = full.specifications()
    print(specs.name, specs.specifications_count)

    # Check substitute products.
    for sub in full.substitutes.list(limit=3):
        print(sub.name, sub.price)

# Autocomplete suggestions for a search prefix.
suggestions = client.products.autocomplete(query="ball bearing")
print(suggestions.terms, suggestions.manufacturers)

# Browse a category by constructing it from its handle.
page = client.category("bearings").browse()
print(page.category.name, page.is_l1_category_page)

# List all top-level categories.
for cat in client.categories.list(limit=3):
    print(cat.name, cat.handle, cat.children_count)

# Typed error handling — catch a missing product.
try:
    client.products.get(sku="99999999")
except ProductNotFound as exc:
    print(f"Product not found: {exc.sku}")

print("exercised: products.search / details / specifications / substitutes.list / autocomplete / category.browse / categories.list / products.get")
All endpoints · 9 totalmissing one? ·

Full-text search over Motion's industrial parts catalog. `query` matches product names, descriptions, and part numbers. Returns paginated results with product summaries including pricing, inventory status, and attributes. Also returns search suggestions (categories, manufacturers, terms). Paginates via integer page counter.

Input
ParamTypeDescription
pageintegerPage number for pagination.
limitintegerResults per page.
queryrequiredstringSearch keyword or part number.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "total": "integer, total number of matching products",
    "results": "array of product summary objects with id, name, brand, price, description, attributes, inventoryStatus, manufacturerPartNumber",
    "pageSize": "integer, results per page",
    "suggestions": "object containing categories, manufacturers, terms, and partNumbers arrays"
  },
  "sample": {
    "data": {
      "page": 1,
      "total": 69810,
      "results": [
        {
          "id": "01178041",
          "name": "BEARING",
          "brand": "DODGE",
          "price": 308.94,
          "attributes": [
            {
              "name": "Product Type",
              "value": "Speed Reducer Rebuild Kits & Replacement Parts"
            }
          ],
          "description": "BEARING",
          "manufacturerName": "DODGE",
          "manufacturerPartNumber": "BEARING"
        }
      ],
      "pageSize": 5,
      "suggestions": {
        "terms": [
          "bearing",
          "sleeve bearing"
        ],
        "categories": [
          "Bearings"
        ],
        "partNumbers": [
          "BEARING"
        ],
        "manufacturers": [
          "Dodge",
          "SKF"
        ]
      }
    },
    "status": "success"
  }
}

About the Motion API

Product Search and Lookup

The search_products endpoint accepts a query string — either a keyword or part number — and returns an array of product objects, each carrying id (Motion Item Number), name, brand, price, inventoryStatus, and attributes. The response also includes a suggestions object with parallel categories, manufacturers, and terms arrays useful for guiding follow-up queries. Use page and limit to paginate through large result sets. When you have a manufacturer part number instead of a Motion SKU, get_product_by_mfr_part_number accepts values like 6205-2RS or VEM3546T and returns the same result shape.

Product Details and Specifications

get_product_details accepts an 8-digit Motion Item Number (sku) and returns the full record: name, brand, price, description, inventoryStatus (e.g. IN_STOCK_SIMPLE, NOT_IN_STOCK), manufacturerPartNumber, breadcrumbs (category path), and a detailed attributes array. For a flattened view, get_product_specifications returns a specifications object mapping spec names directly to values alongside a specifications_count — useful when you want to compare attribute tables without unpacking nested groups. get_substitute_products takes the same sku and returns a list of alternative items with their own id, brand, price, and description.

Category Browsing and Autocomplete

get_product_categories returns all top-level categories with id, name, handle, image, and childrenCount. Those handle values feed directly into browse_category, which accepts a slash-delimited category_path like Bearings or Bearings/Ball-Bearings. Top-level paths return subcategories and an isL1CategoryPage: true flag; deeper paths return products, totalProductsCount, and taxonomyInfo. get_autocomplete_suggestions accepts a query prefix and returns terms, categories, and manufacturers arrays — handy for building search-as-you-type interfaces.

Branch Locations

find_locations requires no inputs and returns every Motion branch and shop in North America. Each record includes city, state, country, zip, latitude, longitude, phone, label, and an isShop boolean that distinguishes retail shop locations from standard distribution branches.

Reliability & maintenanceVerified

The Motion API is a managed, monitored endpoint for motion.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when motion.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 motion.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
9/9 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 cross-reference tool using get_substitute_products to surface drop-in replacements when a bearing or motor is out of stock.
  • Aggregate industrial component specs into a searchable internal database using get_product_specifications for flat key-value attribute maps.
  • Power a procurement dashboard with real-time pricing and inventoryStatus from search_products or get_product_details.
  • Map the nearest Motion branch to a job site using latitude, longitude, and isShop fields from find_locations.
  • Implement a typeahead search UI using get_autocomplete_suggestions to surface relevant terms, categories, and manufacturers as users type.
  • Resolve manufacturer part numbers like 6205-2RS to Motion SKUs and pricing using get_product_by_mfr_part_number.
  • Traverse the full category hierarchy from get_product_categories through browse_category to index all products in a given segment like Bearings or Fluid Power.
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 Motion.com have an official public developer API?+
Motion.com does not publish a public developer API or API documentation for third-party access to its product catalog. This Parse API provides structured access to the same catalog data.
What does `inventoryStatus` return and does it include quantity on hand?+
The inventoryStatus field returns a status string such as IN_STOCK_SIMPLE or NOT_IN_STOCK. It indicates availability but does not expose a numeric quantity-on-hand figure. The API covers stock status for pricing and availability checks; exact warehouse quantities are not part of the current response.
Does `browse_category` return products at every category depth?+
At the top level (e.g. Bearings), the endpoint returns subcategories and category metadata with isL1CategoryPage: true rather than a product list. Product arrays and totalProductsCount appear when you supply a deeper path like Bearings/Ball-Bearings. Navigating to the right depth first using get_product_categories and the returned handle values is the reliable approach.
Does the API return customer reviews or Q&A for products?+
Not currently. The API covers product specifications, pricing, inventory status, substitute products, and category data. Customer reviews and Q&A content are not included in the current endpoints. You can fork this API on Parse and revise it to add an endpoint targeting that content.
Is there a way to filter `search_products` results by brand or category rather than just a keyword?+
The search_products endpoint currently accepts a query string plus page and limit pagination parameters. Facet filtering by brand or category is not a direct input parameter. The suggestions.categories and suggestions.manufacturers fields in the response can guide follow-up queries, and browse_category provides category-scoped browsing. You can fork this API on Parse and revise it to add brand or category filter parameters.
Page content last updated . Spec covers 9 endpoints from motion.com.
Related APIs in EcommerceSee all →
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.
mouser.com API
mouser.com API
microcenter.com API
Search for computer hardware and electronics products, view detailed specs and customer reviews, and check real-time inventory across Micro Center store locations. Browse current deals and explore products by category to find the best prices on tech gear.
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.
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.
analog.com API
Browse Analog Devices' complete product catalog, search for specific parts, and instantly access detailed specifications, documentation, pricing, and sample purchasing options. Explore product categories and subcategories to discover components that match your technical requirements and budget.
moo.com API
Retrieve product listings, categories, pricing details, and search results from MOO.com. Access Trustpilot ratings and detailed pricing calculations across product types and quantity tiers.
arrow.com API
Search for electronic components and instantly access pricing, availability, and detailed product specifications from Arrow Electronics' catalog. Look up manufacturers, retrieve bulk component data, and find the parts you need all in one place.