Skip to main content
POST
/
v1
/
businesses
/
company_website_keywords
/
bulk_enrich
Company Website Keywords
curl --request POST \
  --url https://api.explorium.ai/v1/businesses/company_website_keywords/bulk_enrich \
  --header 'Content-Type: application/json' \
  --header 'api_key: <api-key>' \
  --data '{
  "request_context": {},
  "parameters": {
    "keywords": [
      "<string>"
    ]
  },
  "business_ids": [
    "<string>"
  ]
}'
{
  "response_context": {
    "correlation_id": "<string>",
    "request_status": "success",
    "time_took_in_seconds": 123
  },
  "data": [
    {
      "business_id": "<string>",
      "data": {
        "url": "<string>",
        "keywords_indicator": "<string>",
        "text_results": [
          {}
        ]
      }
    }
  ],
  "entity_id": "<string>",
  "total_results": 123
}
  • Input: Provide a list of up to 50business_ids.
  • Processing: The system scans websites for specified keywords and retrieves matched snippets.
  • Output: A structured response listing keyword occurrences, extracted snippets, and URLs.
Bash
curl --request POST \
     --url https://api.explorium.ai/v1/businesses/company_website_keywords/bulk_enrich \
     --header 'accept: application/json' \
     --header 'api_key: your_api_key_here' \
     --header 'content-type: application/json' \
     --data '{
  "business_ids": [
    "8adce3ca1cef0c986b22310e369a0793",
    "a34bacf839b923770b2c360eefa26748"
  ]
}'
  • Analyze competitor website content to understand keyword strategies.
  • Monitor brand mentions across industry websites.
  • Track keyword density to assess SEO effectiveness.
For additional enrichment options, explore related API endpoints below.

Body Params - Try Me Example

business_ids: ["8adce3ca1cef0c986b22310e369a0793",
               "a34bacf839b923770b2c360eefa26748"]

Authorizations

api_key
string
header
required

Body

application/json
parameters
object
required
business_ids
string[]
required
Required array length: 1 - 50 elements
request_context
object

Response

Successful Response

This is base response model for all responses in partner service.

response_context
object
required
total_results
integer
required
data
BusinessesBulkEnrichRow[CompanyWebsiteKeywordsOutputSchema] · object[]
entity_id
I