Suppliers
GET

Search overseas suppliers by name, phone, or website

Free

Find overseas suppliers and resolve a name to a supplier slug. Search is not charged separately when you then call the corresponding data endpoint — see Credits. Provide at least one of name, phone, or website.

Parameters#

Query parameters

  • page_sizenumberoptionaldefault 10

    Number of returned results

  • offsetnumberoptionaldefault 0

    Results starting position

  • namestringoptional
  • phonestringoptional
  • websitestringoptional
  • fieldsstringoptional

    Comma-separated list of fields to keep on each returned record, e.g. bol_number,arrival_date,supplier_name. Everything else is omitted. Names that the record does not carry are ignored. The envelope (requestCost, creditsRemaining, executionTime, totalCount) is always returned in full. Cannot be combined with exclude. Omit for the full record.

  • excludestringoptional

    Comma-separated list of fields to drop from each returned record, e.g. containers,shipping_rate. Every other field is kept. Cannot be combined with fields. Omit for the full record.

  • formatstringoptionaldefault json

    Response encoding. Defaults to json. Pass toon to receive TOON — the same data in a compact, token-efficient text form intended for LLM prompts. Error responses are always JSON.

    one ofjsontoon

fields, exclude, and format work the same way on every endpoint — Response shaping has worked examples.

Response#

A list of matching overseas suppliers. Use the slug from each result’s key on later calls.

Response shape
{
  "requestCost": 0,
  "creditsRemaining": 9998.5,
  "data": [
    {
      "title": "Damco India",
      "countryCode": "IN",
      "type": "supplier",
      "address": "O/B:Navneet Education Limited Navneet Bhavan Bhavani Shankar Road Dadar West",
      "totalShipments": 32559,
      "mostRecentShipment": "29/03/2024",
      "topCompanies": ["Walmart", "Ikea Supply", "Adidas International Trade For Delivery To", "Homegoods"],
      "key": "supplier/damco-india"
    }
  ],
  "executionTime": "224ms"
}

Top-level fields#

  • data an array of matching records
  • requestCostData credits used for this call (0 if none)
  • creditsRemainingYour data credit balance after the call
  • executionTimeHow long the request took

Fields on each item in data#

FieldExample
  • titlestringDamco India
  • countryCodestringIN
  • typestringsupplier
  • addressstringO/B:Navneet Education Limited Navneet Bhavan Bhavani Shankar Road Dadar West
  • totalShipmentsnumber32559
  • mostRecentShipmentstring29/03/2024
  • topCompaniesstring[]["Walmart", "Ikea Supply", "Adidas International Trade For Delivery To", "Homegoods"]
  • keystringsupplier/damco-india

Errors#

Failures come back as JSON with a statusCode and message. The ones worth handling here are 401 (bad or missing key), 403 (out of credits), and 404 (no such record). See all error responses.