Discover/globalsources.com API
live

globalsources.com APIglobalsources.com

Search Global Sources products and suppliers, fetch product details with reviews, and retrieve supplier catalogs via 4 structured JSON endpoints.

Endpoints
4
Updated
3mo ago
Try it
Page number (1-indexed)
Search keyword (e.g., 'power bank', 'solar panel', 'LED light')
Results per page (max 80)
api.parse.bot/scraper/cf39e34d-1792-4350-ba5a-381730a830b0/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/cf39e34d-1792-4350-ba5a-381730a830b0/search_products?page=1&query=power+bank&page_size=3' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search for products by keyword across Global Sources. Returns detailed product listings including pricing, minimum order quantities, lead times, FOB ports, supplier info, and category hierarchy. Supports pagination.

Input
ParamTypeDescription
pageintegerPage number (1-indexed)
queryrequiredstringSearch keyword (e.g., 'power bank', 'solar panel', 'LED light')
page_sizeintegerResults per page (max 80)
Response
{
  "type": "object",
  "fields": {
    "query": "search keyword used",
    "products": "array of product objects with product_id, product_name, price, min_order_quantity, supplier, category, etc.",
    "page_size": "results per page",
    "total_pages": "total pages available",
    "current_page": "current page number",
    "total_results": "total number of matching products"
  },
  "sample": {
    "data": {
      "query": "power bank",
      "products": [
        {
          "price": "10.66",
          "is_new": false,
          "category": [
            {
              "id": 34869,
              "name": "Mobile Electronics",
              "level": 1
            }
          ],
          "fob_port": "Shenzhen",
          "supplier": {
            "name": "Shenzhen Golf & Feihuang Technology Co. Ltd",
            "org_id": 2008844284284,
            "location": "China"
          },
          "price_unit": "US $",
          "product_id": 1234398550,
          "product_url": "https://www.globalsources.com/Wireless-charging/lcd-digital-display-1234398550p.htm",
          "direct_order": false,
          "model_number": "Mini 14LCDPD",
          "product_name": "PD 65W Power Bank Fast Charging TFT Display Mini Portable High Capacity",
          "lead_time_days": 30,
          "min_order_unit": "Pieces",
          "price_range_low": 0,
          "video_available": false,
          "price_range_high": 10.66,
          "primary_image_url": "https://p.globalsources.com/IMAGES/PDT/S1234398550/lcd-digital-display.jpg",
          "verified_supplier": true,
          "min_order_quantity": 1000,
          "fob_price_show_type": "PRICE_BY_ORDER_QUANTITY",
          "verified_manufacturer": true,
          "product_certifications": []
        }
      ],
      "page_size": 3,
      "total_pages": 17662,
      "current_page": 1,
      "total_results": 53002
    },
    "status": "success"
  }
}

About the globalsources.com API

The Global Sources API exposes 4 endpoints covering B2B product listings, supplier profiles, product detail enrichment, and supplier catalogs from globalsources.com. Use search_products to query across millions of listings and receive fields like price, minimum order quantity, FOB port, lead time, and category hierarchy. Use search_suppliers to find manufacturers and trading companies with employee counts, export markets, certifications, and featured products.

Product and Supplier Search

search_products accepts a query string (e.g., 'power bank', 'solar panel') and optional page and page_size parameters (up to 80 results per page). Each result in the products array includes product_id, product_name, price, min_order_quantity, supplier, category, and additional trade terms. The total_results and total_pages fields let you walk through large result sets programmatically.

search_suppliers takes the same pagination parameters with a page_size cap of 20. Supplier objects in the response carry org_id, name, location, business_types, employees, export_markets, featured_products, and profile images — enough to triage a vendor before visiting their full profile.

Product Detail and Supplier Catalogs

get_product_detail takes a product_id (numeric string obtainable from search_products) and returns a review_summary object with average_score, total_reviews, max_score, and rating_distribution, plus a related_products array with pricing and MOQ for adjacent listings. When the product is found via search enrichment the response also includes full pricing, supplier info, and category data.

get_supplier_products accepts an org_id (from search_suppliers or search_products) and returns up to 12 of that supplier's latest listings — each with product_id, product_name, price, min_order_quantity, and category_id. Pagination is supported via page and page_size parameters, and the total_count field indicates how many products are in the current response.

Common use cases
  • Aggregate FOB pricing and MOQ data across competing suppliers for a specific component using search_products.
  • Build a supplier vetting tool that pulls employees, export_markets, and certifications from search_suppliers.
  • Monitor a known supplier's active listings by polling get_supplier_products with their org_id.
  • Display product review scores and rating distributions in a sourcing dashboard using get_product_detail.
  • Cross-reference related_products from get_product_detail to surface alternative SKUs at lower MOQs.
  • Feed supplier business_types and location data into a procurement qualification workflow.
  • Enrich an internal product catalog with category hierarchy and lead times from Global Sources listings.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 Global Sources have an official developer API?+
Global Sources does not publish a general-purpose developer API for third-party access to its product and supplier data. The Parse API is the structured way to access this data programmatically.
What does `get_product_detail` return beyond basic listing data?+
get_product_detail returns a review_summary object containing average_score, total_reviews, max_score, and a rating_distribution breakdown, plus a related_products array with pricing and MOQ for similar items. Full pricing and supplier fields are included when the product is found via search enrichment.
Does the API return supplier contact details such as email addresses or phone numbers?+
Not currently. The supplier data covers fields like name, location, business_types, employees, export_markets, and featured_products, but direct contact information is not exposed. You can fork this API on Parse and revise it to add an endpoint targeting supplier contact pages.
Is there a limit to how many products `get_supplier_products` can return?+
The endpoint returns up to 12 products per call and supports pagination via the page parameter. The total_count field reflects the count in the current response, not a global catalog size. For suppliers with large catalogs, iterating pages will be necessary to retrieve all listings.
Does the API cover Global Sources trade show or exhibition data?+
Not currently. The four endpoints focus on product listings, supplier profiles, product detail enrichment, and supplier catalogs. Trade show schedules, booth listings, and event data are not included. You can fork this API on Parse and revise it to add an endpoint covering exhibition content.
Page content last updated . Spec covers 4 endpoints from globalsources.com.
Related APIs in B2b DirectorySee all →
angieslist.com API
Search for home service professionals on Angi and access their detailed profiles including reviews, contact information, and photos to find the right contractor for your project. Quickly compare multiple service providers by viewing their ratings, customer feedback, and verified business details all in one place.
naukri.com API
naukri.com API
maxpreps.com API
Access high school sports data from MaxPreps. Search for schools, retrieve team rosters and schedules, look up athlete profiles, and browse national or state rankings across all sports.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
homes.com API
Search for real estate agents and properties available for sale or rent, while accessing detailed agent profiles with their 1-year transaction history, active listings, and performance statistics. Get comprehensive property details and agent information all in one place to help you find the right agent or property that matches your needs.
eprocurement.gov API
Monitor India's public procurement opportunities by accessing active tenders, bids closing today, global tenders, high-value contracts, and cancelled tenders from the Central Public Procurement Portal. Search tender details, browse participating organizations, and track real-time procurement statistics to stay informed on government contracting opportunities.
104.com.tw API
Search for jobs across Taiwan's largest job board and retrieve detailed job listings including descriptions, requirements, and company information. Find the right career opportunities by browsing thousands of positions or searching for specific roles that match your skills and interests.
mouser.com API
mouser.com API