Actions11
- Keyword Data Actions
- Traffic Metrics Actions
- Backlink Data Actions
Overview
This node integrates with the Keywords Everywhere API to retrieve various types of data related to keywords, traffic metrics, backlinks, and miscellaneous information. Specifically, for the Traffic Metrics resource with the Get URL Traffic Metrics operation, it fetches traffic-related statistics for one or multiple URLs.
Typical use cases include:
- Analyzing website traffic data for SEO or marketing purposes.
- Comparing traffic metrics across different domains or pages.
- Gathering country-specific traffic insights by specifying a country code.
For example, a user can input a list of URLs and receive detailed traffic metrics such as visits, page views, or other relevant statistics from the Keywords Everywhere service.
Properties
| Name | Meaning |
|---|---|
| URL Input Type | Choose how to input URLs: either as multiple string values ("Multiple Values") or as a JSON array ("JSON Array"). |
| URLs (Multiple) | List of URLs/domains entered as multiple string values. |
| URLs (JSON) | JSON array of URLs, e.g., ["https://example.com/", "https://example.org/"]. |
| Country | Country code (e.g., "us") to specify the geographic region for which to retrieve traffic metrics. |
Output
The node outputs an array of JSON objects, each corresponding to an input item. Each output object has the structure:
{
"status": "success",
"data": { /* traffic metrics data returned from the API */ }
}
- The
datafield contains the traffic metrics retrieved from the Keywords Everywhere API for the specified URLs. - The exact structure of the
datadepends on the API response but generally includes traffic statistics relevant to the requested URLs. - No binary data output is produced by this node.
Dependencies
- Requires an active connection to the Keywords Everywhere API via an API key credential.
- The node expects the API base URL and authentication details to be configured in the credentials.
- Internet access is necessary to make HTTP requests to the external Keywords Everywhere API.
Troubleshooting
No credentials got returned!
This error occurs if the node cannot find or access the required API credentials. Ensure that the API key credential is properly set up and linked to the node.HTTP request failures or unexpected API responses:
Verify that the URLs are correctly formatted and that the country code is valid and supported by the API. Use the "Get Countries" endpoint to confirm supported country codes.Empty or missing data in output:
Check if the input URLs are valid and that the API service is operational. Network issues or API rate limits might also cause incomplete data.
Links and References
- Keywords Everywhere API Documentation (for detailed API endpoints and parameters)
- Supported Countries Endpoint (to retrieve valid country codes)