Mangools/API

Get list of competitor domains

Returns a list of domains that compete with the specified URL/domain for organic keywords.

Limits

Requires a previous competitor-keywords lookup for the same URL within 24 hours.

GET
/kwfinder/competitor-domain

Authorization

ApiKeyAuth
x-access-token<token>

API token issued for your Mangools account, sent as an API key in the x-access-token HTTP header. This is NOT a standard RFC 6750 Authorization: Bearer <token> header. Auto-generated clients should be configured to send the token in x-access-token accordingly.

In: header

Query Parameters

url*string

Target URL / domain / subdomain

location_id*integer

ID of location

Response Body

application/json

application/json

application/json

curl -X GET "https://api.mangools.com/v3/kwfinder/competitor-domain?url=mangools.com&location_id=2840"
[
  "competitor1.com",
  "competitor2.com"
]
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}
{
  "error": {
    "type": "InvalidInput",
    "message": "Parameter url is invalid"
  }
}