Endpoint Playground
Test Crawlora's Goldin suggest API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/goldin/suggest" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| keyword | string | No | Partial search query, e.g. \ | |
| limit | integer | No | Max suggestions to return, defaults to 8, capped at 20 |
{
"code": 200,
"msg": "OK",
"data": {
"keyword": "Jordan",
"suggestions": [
"jordan",
"jordan auto",
"jordan love",
"jordan star",
"jordan rookie",
"jordan jersey",
"jordan fleer",
"jordan signed"
],
"total": 603
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Goldin's own search-suggestions/autocomplete for a partial keyword, matching the site's own search box typeahead. keyword is optional -- when omitted, returns Goldin's current trending/popular searches instead of an error.
{
"code": 200,
"msg": "OK",
"data": {
"keyword": "Jordan",
"suggestions": [
"jordan",
"jordan auto",
"jordan love",
"jordan star",
"jordan rookie",
"jordan jersey",
"jordan fleer",
"jordan signed"
],
"total": 603
}
}curl "https://api.crawlora.net/api/v1/goldin/suggest" \
-H "x-api-key: $CRAWLORA_API_KEY"