Discover/Volza API
live

Volza APIvolza.com

Search Volza.com trade data via API. Get HS codes with shipment counts, drill into buyers, suppliers, and company profiles for any product category.

Endpoint health
verified 4d ago
search_product
1/1 passing latest checkself-healing
Endpoints
4
Updated
22d ago

What is the Volza API?

The Volza API exposes global import/export trade intelligence across 4 endpoints. Starting with search_product, you can look up any product keyword and receive up to 19 matching HS/HSN codes, each with a shipment count and standardized description. From there, endpoints for buyers, suppliers, and company profiles let you trace trade flows from product category down to individual company.

Try it
Product keyword to search (e.g. 'spices', 'electronics', 'furniture'). Must be non-empty.
api.parse.bot/scraper/266e4c1c-8c7f-4e92-aaa0-1b75f466f191/<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/266e4c1c-8c7f-4e92-aaa0-1b75f466f191/search_product?query=spices' \
  -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 volza-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: Volza Trade Intelligence SDK — search trade HS codes by product keyword."""
from parse_apis.volza_trade_intelligence_api import Volza, NotFoundError

volza = Volza()

# Search for HS codes related to a product keyword
result = volza.productsearches.search(query="electronics")

print(result.query, result.is_hs_code)

# Access typed HS code objects with shipment counts
for hs_code in result.hs_codes[:5]:
    print(hs_code.hsn_code, hs_code.total_shipments, hs_code.description[:60])

# Typed error handling: catch when an empty/invalid query is rejected
try:
    empty_result = volza.productsearches.search(query="spices")
    print(empty_result.query, len(empty_result.hs_codes), "HS codes found")
except NotFoundError as exc:
    print(f"not found: {exc}")

print("exercised: productsearches.search / HSCode field access / error handling")
All endpoints · 4 totalmissing one? ·

Search for products by keyword and get related HS (Harmonized System) codes with trade shipment counts and descriptions. Returns up to 19 HS codes sorted by shipment volume. Keywords match against indexed product descriptions; some terms may return no results while variations succeed (e.g. 'spices' returns results but 'spice' may not). The response also indicates whether the query was interpreted as an HS code itself.

Input
ParamTypeDescription
queryrequiredstringProduct keyword to search (e.g. 'spices', 'electronics', 'furniture'). Must be non-empty.
Response
{
  "type": "object",
  "fields": {
    "query": "string - the search query submitted",
    "hs_codes": "array of objects with hsn_code (string), total_shipments (string), and description (string)",
    "is_hs_code": "boolean - whether the query was interpreted as an HS code rather than a product name"
  },
  "sample": {
    "data": {
      "query": "spices",
      "hs_codes": [
        {
          "hsn_code": "0910",
          "description": "ginger, saffron, turmeric (curcuma), thyme, bay leaves, curry and other spices - ginger:",
          "total_shipments": "49056"
        },
        {
          "hsn_code": "2103",
          "description": "sauces and preparations therefor, mixed condiments and mixed seasonings; mustard flour and meal and prepared mustard",
          "total_shipments": "22425"
        }
      ],
      "is_hs_code": false
    },
    "status": "success"
  }
}

About the Volza API

Product and HS Code Search

The search_product endpoint accepts a query string — a product keyword like spices, electronics, or furniture — and returns an array of hs_codes objects. Each object contains an hsn_code, a total_shipments count, and a plain-language description. Results are sorted by shipment volume and capped at 19 entries. The response also includes an is_hs_code boolean that tells you whether the API interpreted the query as a direct HS code lookup rather than a keyword search. Note that some keyword variations return no results while closely related terms may match; testing a few synonyms is worth doing when initial queries come back empty.

Buyers and Suppliers by Product

get_product_buyers and get_product_suppliers both accept two parameters: hsn (the HS code, e.g. 0910) and product (a product slug like spices). Both return a companies array representing the buyers or suppliers active in that product-code combination. These endpoints are the bridge between a trade category and the actual companies moving goods under that classification.

Company Profiles

get_company_profile takes a slug parameter — for example, mtr-foods-private-limited-2588043 — and returns the company's name, a url linking to its Volza profile, and a total_shipments figure. Company slugs are surfaced in the buyer and supplier results, so a typical workflow chains all four endpoints: search a product, identify an HS code, pull buyers or suppliers, then fetch profiles for companies of interest.

Reliability & maintenanceVerified

The Volza API is a managed, monitored endpoint for volza.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when volza.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 volza.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
4d ago
Latest check
1/1 endpoint 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
  • Identify which HS codes carry the highest shipment volumes for a product category before entering a new market
  • Build a supplier shortlist for a given HS code using get_product_suppliers to find active manufacturers
  • Enrich a B2B leads database with total shipment counts from get_company_profile
  • Map competitive buyer landscapes for a specific HSN code using get_product_buyers
  • Validate HS code classification by comparing keyword search results against known shipment volumes
  • Screen trade partners by cross-referencing buyer and supplier company slugs with company profile data
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 Volza offer an official developer API?+
Volza does not publish a documented public developer API. The Parse API provides structured programmatic access to trade data from volza.com that is not otherwise available via an official endpoint.
What exactly does `search_product` return, and are results filtered by country?+
It returns up to 19 HS code objects, each with hsn_code, total_shipments, and description, sorted by shipment volume. The endpoint does not currently accept a country filter — results reflect global shipment data across all trade lanes. You can fork this API on Parse and revise it to add country-scoped filtering if your use case requires it.
Does the API return individual shipment records or transaction-level detail?+
No individual shipment records are returned. The current endpoints surface aggregate shipment counts at the HS code and company level, plus company profile data. Transaction-level detail — dates, shipment values, port names, or consignee addresses — is not covered. You can fork it on Parse and revise to add an endpoint targeting that shipment-level data.
How complete is the `companies` array returned by buyer and supplier endpoints?+
The companies array is returned as-is from the data source for the given HSN and product slug combination. No documented cap or pagination parameter is exposed on these endpoints, so the count of results may vary by product category and HS code popularity. Niche codes with low shipment volumes may return short or empty arrays.
Can I look up trade data for a specific importer or exporter country pair?+
Not currently. The API covers product-level HS code search, buyer and supplier company lists, and individual company profiles, but does not expose bilateral country-pair trade flows. You can fork it on Parse and revise to add an endpoint that targets country-specific import or export data from Volza.
Page content last updated . Spec covers 4 endpoints from volza.com.
Related APIs in B2b DirectorySee all →
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.
wcotradetools.org API
Quickly look up official HS 2022 product classifications, browse the complete hierarchy of sections, chapters, headings, and subheadings, and search for specific commodity codes used in international trade. Organize product data with standardized, normalized classification information perfect for inventory systems and customs documentation.
trademo.com API
Access comprehensive global trade data to search companies, find manufacturers by country, and review detailed trade profiles, sanctions lists, and politically exposed persons (PEP) lists. Monitor global trade indices and build a complete directory of international trading partners and compliance information.
wlw.at API
Search for products and suppliers on Austria's wlw.at B2B marketplace, then retrieve detailed company information including contact numbers, VAT IDs, and business details. Browse product categories and discover verified suppliers to streamline your procurement process.
tradestat.commerce.gov.in API
Analyze India's trade patterns by searching export-import data across commodities, countries, and regions using HS codes and historical records. Track bilateral trade flows and commodity-wise statistics to understand market trends and make informed trade decisions.
beta.trademap.org API
Analyze international trade patterns by accessing comprehensive goods and services trade statistics, time series data, and trade indicators across countries and product classifications. Track trade flows using standardized HS and EBOPS product codes to compare performance metrics and coverage across different markets and time periods.
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.
cos.com API
Search and browse COS fashion products by name or category to instantly access pricing, product images, and direct links to items. Retrieve detailed information about specific products including descriptions, availability, and pricing to compare styles and make informed shopping decisions.