FetchSERP

Interact with the FetchSERP API

Overview

This node integrates with the FetchSERP API to retrieve various SEO and web data. Specifically, the "Get Moz Analysis" operation fetches SEO metrics and analysis data related to a domain or URL from Moz via the FetchSERP service.

Common scenarios where this node is beneficial include:

  • SEO professionals wanting to analyze domain authority, backlinks, and other Moz metrics.
  • Digital marketers performing competitive analysis on domains.
  • Website owners monitoring their SEO health using Moz data.

For example, by providing a domain in the query parameters, users can get Moz's domain-level SEO insights such as domain authority, page authority, spam score, and backlink counts.

Properties

Name Meaning
Query Parameters (JSON) JSON object containing query parameters for the API call. For "Get Moz Analysis", typically includes keys like "domain" with the domain name to analyze. Example: {"domain":"example.com"}

Output

The output is an array of items, each with a json property containing the parsed response from the FetchSERP API for the Moz analysis endpoint. The structure depends on the API response but generally includes Moz SEO metrics such as:

  • Domain Authority
  • Page Authority
  • Spam Score
  • Backlink counts
  • Other Moz-specific SEO indicators

No binary data is output by this operation.

Dependencies

  • Requires an API key credential for the FetchSERP API.
  • The node uses the base URL https://www.fetchserp.com by default unless overridden in credentials.
  • The API key must have access rights to the Moz analysis endpoint.

Troubleshooting

  • Invalid or missing API key: The node will throw authentication errors if the API key is invalid or not provided. Ensure the API key credential is correctly configured.
  • Malformed JSON in Query Parameters: If the JSON string in "Query Parameters (JSON)" is invalid, the node will fail parsing it. Use valid JSON format.
  • Unknown operation error: This occurs if the operation parameter is set incorrectly. Make sure to select "Get Moz Analysis" for this use case.
  • API rate limits or quota exceeded: The FetchSERP API may limit requests; handle errors accordingly or upgrade your plan.
  • Network issues: Connectivity problems will cause HTTP request failures.

Links and References

Discussion