Actions20
- Check Page Indexation
- Get Backlinks
- Get Domain Emails
- Get Domain Info
- Get Domain Ranking
- Get Keywords Search Volume
- Get Keywords Suggestions
- Get Long Tail Keywords
- Get Moz Analysis
- Get SERP AI Mode
- Get SERP HTML
- Get SERP Results
- Get SERP Text
- Get User Info
- Get Webpage AI Analysis
- Get Webpage SEO Analysis
- Scrape Domain
- Scrape Webpage
- Scrape Webpage JS
- Scrape Webpage JS & Proxy
Overview
This node integrates with the FetchSERP API to retrieve various SEO and web data. Specifically, the "Get Domain Ranking" operation fetches ranking information for a specified domain. This is useful for digital marketers, SEO specialists, and website owners who want to monitor their domain's search engine ranking performance.
Practical examples include:
- Checking how well a domain ranks for certain keywords.
- Tracking changes in domain ranking over time.
- Comparing domain rankings against competitors.
Properties
| Name | Meaning |
|---|---|
| Query Parameters (JSON) | JSON object containing query parameters for the API request. For "Get Domain Ranking", typically includes the domain name, e.g., {"domain":"example.com"}. |
Output
The node outputs an array of items where each item's json property contains the response from the FetchSERP API for the requested operation. For "Get Domain Ranking", this JSON will include ranking details about the specified domain as returned by the API.
No binary data output is produced by this operation.
Dependencies
- Requires an API key credential for the FetchSERP service.
- The base URL defaults to
https://www.fetchserp.combut can be overridden via credentials. - The node makes HTTP GET requests to the
/api/v1/rankingendpoint of the FetchSERP API.
Troubleshooting
- Common issues:
- Invalid or missing API token will cause authentication errors.
- Malformed JSON in the "Query Parameters (JSON)" field may cause parsing errors.
- Requesting unknown operations will throw an error indicating the operation is unknown.
- Error messages:
"Unknown operation \"<operation>\"": Means the selected operation is not supported; verify the operation name.- HTTP errors from the API (e.g., 401 Unauthorized) indicate credential or permission problems.
- To resolve errors, ensure the API token is valid, the JSON input is correctly formatted, and the operation name matches one of the supported options.
Links and References
- FetchSERP API Documentation (for detailed API usage and parameters)
- n8n documentation on HTTP Request Node for understanding underlying HTTP calls