turkishexporter.com.tr APIturkishexporter.com.tr ↗
Access Turkish import/export requests, company profiles, trade categories, and databanks via 8 endpoints from turkishexporter.com.tr.
curl -X GET 'https://api.parse.bot/scraper/4b6e4f43-bb8f-4152-9a6a-d0c2967eed72/search_importers?page=1&query=machinery' \ -H 'X-API-Key: $PARSE_API_KEY'
Search and list import trade requests (importers) with filters for keyword, country, and pagination. Returns paginated results from the imports section.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number for pagination. |
| query | string | Search keyword to filter import requests (e.g. 'machinery', 'textile'). |
| country_code | string | Country code filter (e.g. 'US', 'BD', 'EG'). |
{
"type": "object",
"fields": {
"page": "integer, current page number",
"type": "string, always 'imports'",
"items": "array of import request objects with id, title, url, country, date, keywords, type"
},
"sample": {
"data": {
"page": 1,
"type": "imports",
"items": [
{
"id": "840265",
"url": "https://www.turkishexporter.com.tr/en/imports-exports/bangladesh-trader-wants-lentil-processing-machine-840265/",
"date": "04-30-2026 12:09:00",
"type": "imports",
"title": "Bangladesh trader wants Lentil Processing Machine",
"country": "Bangladesh",
"keywords": [
"lentil processing machinery",
"lentil dehusking equipment"
]
}
]
},
"status": "success"
}
}About the turkishexporter.com.tr 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.
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.
- Monitor new import requests in a target country by polling
search_importerswith acountry_codefilter. - Build a trade lead digest by fetching
list_free_requestson a schedule and surfacing entries byleadTypeandregionName. - Enrich a B2B prospecting list by querying
search_companieswith product keywords and pulling full profiles viaget_company_detail. - Categorize trade activity by sector using
list_categoriesto mapslugandcountfields to industry segments. - Identify competing export offers in a product niche by searching
search_exporterswith a productquery. - Track regional trade research coverage by iterating
list_databanksand grouping results bycountryCodeandcountryName. - Surface similar trade requests for a given import listing using the
similar_requestsarray fromget_importer_detail.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.
Does turkishexporter.com.tr have an official developer API?+
Can I retrieve contact information for importers or exporters through this API?+
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?+
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?+
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?+
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.