Discover/ThomasNet API
live

ThomasNet APIthomasnet.com

Search ThomasNet's industrial supplier directory via API. Get company profiles, revenue ranges, certifications, and bulk lead lists for manufacturers and distributors.

Endpoint health
verified 20h ago
get_bulk_leads
search_suppliers
get_supplier_profile
3/3 passing latest checkself-healing
Endpoints
3
Updated
22d ago

What is the ThomasNet API?

The ThomasNet API gives programmatic access to the ThomasNet industrial supplier directory across 3 endpoints. Use search_suppliers to query by keyword and location and get back paginated supplier summaries — including annual sales, employee count, year founded, and phone — or use get_supplier_profile to pull full company detail by profile URL, or get_bulk_leads to collect flat lead lists across multiple pages in a single call.

Try it
Page number for pagination.
Search keyword or category (e.g. 'metal fabrication', 'plastic injection molding').
Location filter such as city, state, or ZIP code.
api.parse.bot/scraper/3eee7814-a3b8-4263-ab86-caf00068b4f4/<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/3eee7814-a3b8-4263-ab86-caf00068b4f4/search_suppliers?page=1&query=metal+fabrication&location=Illinois' \
  -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 thomasnet-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.

"""
ThomasNet API - Industrial Supplier Directory
Search for suppliers and retrieve detailed company profiles.
"""

from parse_apis.thomasnet_api import ThomasNet, SupplierSummary, Supplier, Lead, Address

client = ThomasNet()

# Search for supplier summaries by keyword and location
for summary in client.suppliersummaries.search(query="metal fabrication", location="Illinois", limit=5):
    print(summary.name, summary.location, summary.annual_sales, summary.phone)

    # Navigate from summary to full supplier detail
    detail = summary.details()
    print(detail.name, detail.website, detail.year_founded, detail.business_type)
    if detail.address:
        print(detail.address.city, detail.address.state, detail.address.zip)

# Extract bulk leads for prospecting
for lead in client.leads.bulk_extract(query="plastic injection molding", max_pages=2, limit=10):
    print(lead.name, lead.phone, lead.location, lead.annual_sales)
All endpoints · 3 totalmissing one? ·

Search for industrial suppliers by keyword and optional location. Returns paginated results from the ThomasNet directory with company summary info including contact details and revenue. Each result includes a profile_url for fetching full details via get_supplier_profile. Paginates via integer page number. Server-side filtering is limited to keyword and location.

Input
ParamTypeDescription
pageintegerPage number for pagination.
queryrequiredstringSearch keyword or category (e.g. 'metal fabrication', 'plastic injection molding').
locationstringLocation filter such as city, state, or ZIP code.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "count": "integer, total number of matching suppliers",
    "query": "string, the search query used",
    "results": "array of SupplierSummary objects with tgrams_id, name, phone, location, annual_sales, employee_count, year_founded, website, profile_url",
    "location": "string, location filter applied"
  },
  "sample": {
    "data": {
      "page": 1,
      "count": 23398,
      "query": "metal fabrication",
      "results": [
        {
          "name": "Chicago Metal Fabricators",
          "phone": "+1 (555) 012-3456",
          "website": "https://chicagometal.com/",
          "location": "Chicago, IL",
          "tgrams_id": "436170",
          "profile_url": "https://www.thomasnet.com/profile/436170/company.html",
          "annual_sales": "$25 - 49.9 Mil",
          "year_founded": "1908",
          "employee_count": "50-99"
        }
      ],
      "location": "Illinois"
    },
    "status": "success"
  }
}

About the ThomasNet API

Search and Profile Endpoints

The search_suppliers endpoint accepts a required query string (e.g. 'metal fabrication' or 'plastic injection molding') and an optional location filter — city, state, or ZIP code. Results are paginated via the page parameter. Each item in the results array contains a tgrams_id, name, phone, location, annual_sales, employee_count, year_founded, website, and a prof field linking to the full profile. The response also surfaces count — the total number of matching suppliers for that query.

Detailed Company Profiles

The get_supplier_profile endpoint accepts a full ThomasNet profile URL or path and returns a richer record: address (broken into address1, city, state, zip, country), description, logo_url, annual_sales, year_founded, business_type, and the tgrams_id that ties back to search results. This is the endpoint to use when you need structured address data or the company description field rather than just summary info.

Bulk Lead Extraction

The get_bulk_leads endpoint wraps the search functionality to iterate automatically across pages. Pass a query string and optionally cap the run with max_pages. The response is a flat leads array — each entry has tgrams_id, name, phone, location, annual_sales, and website — along with a total count. This makes it practical to build targeted supplier lists without manually stepping through pagination.

Reliability & maintenanceVerified

The ThomasNet API is a managed, monitored endpoint for thomasnet.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when thomasnet.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 thomasnet.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
20h ago
Latest check
3/3 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 supplier shortlist for a specific manufacturing category using search_suppliers with keyword and state filters
  • Enrich a CRM with structured address, phone, and annual sales data pulled from get_supplier_profile
  • Generate bulk outreach lists of manufacturers by running get_bulk_leads across multiple query categories
  • Track year-founded and employee-count trends across a set of suppliers in a given industry vertical
  • Cross-reference tgrams_id values from search results with profile records to deduplicate supplier databases
  • Filter potential vendors by business type using the business_type field returned in full profiles
  • Identify sourcing alternatives by running keyword queries for specific fabrication processes and comparing annual_sales ranges
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 ThomasNet have an official developer API?+
ThomasNet does not publish a general-purpose public developer API. Their data is accessible through their website at thomasnet.com, and this Parse API provides structured programmatic access to that directory.
What does `get_supplier_profile` return beyond what `search_suppliers` includes?+
The profile endpoint adds a full structured address object (address1, city, state, zip, country), a description field, logo_url, and business_type. The search endpoint returns summary fields only — no description, no broken-out address components.
Does the API return supplier certifications such as ISO or AS9100?+
Not currently. The endpoints cover company info, revenue ranges, address, business type, and contact details. Certification data visible on some ThomasNet profiles is not exposed in the current response schema. You can fork this API on Parse and revise it to add a certifications field to the profile endpoint.
How does pagination work across the endpoints?+
The search_suppliers endpoint takes an integer page parameter and returns a count of total matches, so you can calculate total pages client-side. The get_bulk_leads endpoint handles pagination internally up to the max_pages limit you supply, returning a single flat leads array.
Can I retrieve a list of product categories or subcategories available on ThomasNet?+
Not currently. The API accepts free-text keyword queries and location filters but does not expose ThomasNet's category taxonomy as a browsable or enumerable resource. You can fork this API on Parse and revise it to add a category-listing endpoint.
Page content last updated . Spec covers 3 endpoints from thomasnet.com.
Related APIs in B2b DirectorySee all →
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
tradeindia.com API
Search and discover products, suppliers, and their contact information on TradeIndia's B2B marketplace. Browse product categories, find supplier profiles, and explore upcoming tradeshows and industry events — including locations, dates, venues, and organizer details.
globalsources.com API
Search Global Sources for products and suppliers, then fetch related product info and a supplier’s latest product listings using product IDs and organization IDs.
dir.indiamart.com API
Search and extract supplier listings, product details, and business factsheets from the IndiaMart B2B directory. Browse by city and category, retrieve structured product specifications, pricing, and supplier verification data.
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.
wlw.de API
Search for B2B suppliers and manufacturers on wlw.de, view detailed company profiles with contact information and product catalogs, and discover featured businesses and products. Find the right industrial suppliers and vendors quickly by browsing company details and product listings across Germany's largest B2B marketplace.
europages.fr API
Search for European suppliers and products, retrieve detailed company information and catalogs, and discover business listings across thousands of manufacturers and distributors on Europages. Find the right B2B partners by filtering suppliers, accessing company profiles, and browsing their product offerings all in one place.
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.
ThomasNet API – Industrial Supplier Directory · Parse