Google Keyword Suggestions
DataBlue / Docs / Endpoint
POST/v1/data/google/keyword-suggestions

Google Keyword Suggestions

Return Google autocomplete keyword suggestions for a seed term with country, language, client, and result-count controls.

Execution Model

Live request

Runtime depends on endpoint, target, pagination, rendering mode, and active plan limits.

Credit Weight

Live catalog

Current weights are managed from the Data API Weights admin table and shown on pricing before use.

Parameters

NameTypeRequirementDescription
keywordstringREQUIREDSeed keyword.
countrystringoptionalTwo-letter country code.
languagestringoptionalGoogle UI language code.
clientstringoptionalGoogle suggest client.
num_resultsnumberoptionalMaximum suggestions to return (1-50).
timeout_msnumberoptionalProvider timeout in milliseconds (3000-60000).

Response Fields

FieldTypeDescription
successbooleanWhether the request completed successfully.
suggestionsarraySuggestions with position, keyword, relevance, and suggestion_type when available.
suggest_urlstringGoogle suggest URL used.
time_takennumberAPI response time in seconds.

cURL Example

curl -X POST "https://api.datablue.dev/v1/data/google/keyword-suggestions" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "keyword": "kiro beauty",
  "country": "in",
  "language": "en",
  "num_results": 10
}'

System Responses

200 OK

Request processed successfully.

401 UNAUTHORIZED

Missing or invalid API key.

429 RATE LIMIT

System capacity exceeded.

500 SYSTEM FAILURE

Internal core exception.

EXAMPLE RESPONSE
{
  "success": true,
  "source": "google",
  "operation": "keyword_suggestions",
  "runtime": "http",
  "keyword": "kiro beauty",
  "country": "in",
  "language": "en",
  "client": "firefox",
  "total_results": 3,
  "time_taken": 0.38,
  "suggestions": [
    {
      "position": 1,
      "keyword": "kiro beauty lipstick",
      "relevance": 900
    },
    {
      "position": 2,
      "keyword": "kiro beauty kajal",
      "relevance": 810
    }
  ]
}