Discover/TurkishExporter API
live

TurkishExporter APIturkishexporter.com.tr

Access Turkish import/export requests, company profiles, trade categories, and databanks via 8 endpoints from turkishexporter.com.tr.

Endpoint health
verified 2d ago
list_categories
search_exporters
list_free_requests
search_importers
search_companies
8/8 passing latest checkself-healing
Endpoints
8
Updated
24d ago

What is the TurkishExporter API?

The TurkishExporter API exposes 8 endpoints covering import and export trade requests, company directory profiles, trade categories, databanks, and publicly visible free requests from turkishexporter.com.tr. The search_importers endpoint lets you filter import requests by keyword and country code, returning paginated arrays of request objects with id, title, country, date, and keywords. Companion endpoints cover exporter offers, company listings, and detailed profiles for individual trade requests and companies.

Try it
Page number for pagination.
Search keyword to filter import requests (e.g. 'machinery', 'textile').
Country slug for filtering results by country (e.g. 'bangladesh', 'pakistan', 'usa', 'france'). Uses lowercase country name as URL slug.
api.parse.bot/scraper/4b6e4f43-bb8f-4152-9a6a-d0c2967eed72/<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/4b6e4f43-bb8f-4152-9a6a-d0c2967eed72/search_importers?page=1&query=machinery&country_code=bangladesh' \
  -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 turkishexporter-com-tr-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: TurkishExporter SDK — bounded, re-runnable; every call capped."""
from parse_apis.turkishexporter_api import TurkishExporter, ResourceNotFound

client = TurkishExporter()

# Search for import requests related to machinery — cap at 5 results.
for lead in client.leadsummaries.search_imports(query="machinery", limit=5):
    print(lead.title, lead.country)

# Drill into the first import request's full details.
lead = client.leadsummaries.search_imports(query="textile", limit=1).first()
if lead:
    detail = lead.details()
    print(detail.title, detail.description, detail.categories)

# Search Turkish export companies and get one company's full profile.
company = client.companysummaries.search(query="food", limit=1).first()
if company:
    profile = company.details()
    print(profile.name, profile.categories, profile.tags[:5])

# List trade categories and show top ones by listing count.
for cat in client.categories.list(limit=5):
    print(cat.name, cat.count, cat.slug)

# Typed error handling: catch a not-found on a bad slug.
try:
    bad = client.companysummary(slug="nonexistent-company-000000").details()
except ResourceNotFound as exc:
    print(f"Company not found: {exc.slug}")

# List free trade requests.
for req in client.freerequests.list(count=10, limit=3):
    print(req.title, req.region_name, req.lead_type)

print("exercised: leadsummaries.search_imports / details / companysummaries.search / details / categories.list / freerequests.list")
All endpoints · 8 totalmissing one? ·

Search and list import trade requests (importers) with filters for keyword, country, and pagination. Returns paginated results from the imports section. Each result includes a slug suitable for fetching full details via get_importer_detail.

Input
ParamTypeDescription
pageintegerPage number for pagination.
querystringSearch keyword to filter import requests (e.g. 'machinery', 'textile').
country_codestringCountry slug for filtering results by country (e.g. 'bangladesh', 'pakistan', 'usa', 'france'). Uses lowercase country name as URL slug.
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "type": "string, always 'imports'",
    "items": "array of import request objects with id, title, url, slug, country, date, keywords, type"
  },
  "sample": {
    "data": {
      "page": 1,
      "type": "imports",
      "items": [
        {
          "id": "844214",
          "url": "https://www.turkishexporter.com.tr/en/imports-exports/sri-lanka-corporation-purchases-earth-drilling-machine-844214/",
          "date": "06-10-2026 11:52:00",
          "slug": "sri-lanka-corporation-purchases-earth-drilling-machine-844214",
          "type": "imports",
          "title": "Sri Lanka corporation purchases Earth Drilling Machine",
          "country": "Sri Lanka",
          "keywords": [
            "construction machinery",
            "drilling machine",
            "sri lanka"
          ]
        }
      ]
    },
    "status": "success"
  }
}

About the TurkishExporter API

Trade Request Search and Detail

search_importers and search_exporters both accept optional query, country_code, and page parameters and return paginated items arrays. Each item includes an id, title, url, country, date, keywords, and a type field fixed to 'imports' or 'exports' respectively. For a full record, pass the URL slug to get_importer_detail, which returns title, description, country, categories, tags, and a similar_requests array. The contact_info_gated field on that endpoint is always true — contact details are behind a membership wall and are not exposed.

Company Directory

search_companies accepts query, country (as a slug like 'turkey'), and page, returning company objects with name, url, description, tags, and membership status. Fetching a specific company by slug via get_company_detail returns the full profile: name, country, description, categories, and up to 50 tags representing the company's product keywords.

Categories, Databanks, and Free Requests

list_categories requires no inputs and returns a data array of category objects, each carrying id, name, slug, langCode, count, and url. list_databanks similarly returns a data array of trade research entries with id, title, countryCode, and countryName. list_free_requests accepts an optional count parameter and returns the latest publicly accessible trade leads through the resultObject array, which includes id, title, countryCode, regionName, leadType, and freeUntilTime — useful for sampling live trade activity without membership.

Reliability & maintenanceVerified

The TurkishExporter API is a managed, monitored endpoint for turkishexporter.com.tr — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when turkishexporter.com.tr 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 turkishexporter.com.tr 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
2d ago
Latest check
8/8 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
  • Monitor new import requests in a target country by polling search_importers with a country_code filter.
  • Build a trade lead digest by fetching list_free_requests on a schedule and surfacing entries by leadType and regionName.
  • Enrich a B2B prospecting list by querying search_companies with product keywords and pulling full profiles via get_company_detail.
  • Categorize trade activity by sector using list_categories to map slug and count fields to industry segments.
  • Identify competing export offers in a product niche by searching search_exporters with a product query.
  • Track regional trade research coverage by iterating list_databanks and grouping results by countryCode and countryName.
  • Surface similar trade requests for a given import listing using the similar_requests array from get_importer_detail.
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 turkishexporter.com.tr have an official developer API?+
TurkishExporter.com.tr does not publish a public developer API. This Parse API is the structured programmatic interface available for accessing the site's trade data.
Can I retrieve contact information for importers or exporters through this API?+
No contact details are exposed. The get_importer_detail endpoint includes a contact_info_gated field that is always true, meaning contact information requires a paid membership on the source site and is not returned by the API. The API covers trade request descriptions, categories, tags, country, and similar requests.
Does `list_free_requests` return both import and export leads?+
Yes. Each object in the resultObject array includes a leadType field that distinguishes between import and export leads, along with countryCode, regionName, and a freeUntilTime timestamp indicating how long the record remains publicly visible.
Is historical trade request data available through the API?+
The search endpoints (search_importers, search_exporters) support pagination via the page parameter and return date fields on each item, but the API does not expose a dedicated date-range filter for historical lookups. You can fork this API on Parse and revise it to add a date-range parameter if your use case requires filtering by posting period.
Does the API expose company contact details such as email, phone, or address?+
Currently the API does not return contact fields for companies. get_company_detail covers name, country, description, categories, and product tags. You can fork the API on Parse and revise it to add contact fields if they become accessible on the source profile pages.
Page content last updated . Spec covers 8 endpoints from turkishexporter.com.tr.
Related APIs in B2b DirectorySee all →
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.
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.
defacto.com.tr API
Search and browse DeFacto's Turkish product catalog to find clothing items, explore categories, and view detailed product information including pricing and availability. Apply filters to narrow down results by color, size, gender, and more.
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.
tuik.org.tr API
Access Turkey's official economic and social statistics including real-time CPI, GDP, and unemployment indicators, along with detailed press releases and historical data series. Search and retrieve specific statistical themes, economic bulletins, and key economic indicators directly from TÜİK's official data portal.
migros.com.tr API
Search and browse Migros supermarket products by category, view detailed product information including pricing, and discover current discounts and promotional campaigns. Easily find specific items and explore what's on sale at Migros.com.tr.
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.
gulfood.com API
Access the complete Gulfood exhibitor directory, including exhibitor profiles, products, brands, press releases, and exhibition sectors. Filter by country, category, venue, or keyword to find exhibitors and retrieve detailed profiles with stand locations, contact information, and social media links.