Mangools/API

Get suggestions (suggestion is - similar url, count of backlinks for this url, expected cost for simialr url) for url

Suggest available export targets for a given URL. For the input URL, the endpoint returns a list of related targets (root domain, subdomain, exact URL, and protocol variants) together with the number of backlinks indexed for each target and the estimated export cost (in backlink-row units).

Use the returned suggestions to decide which target variant to export via POST /linkminer/exports.

POST
/linkminer/exports/suggest

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

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://api.mangools.com/v3/linkminer/exports/suggest" \  -H "Content-Type: application/json" \  -d '{    "url": "dsl.sk"  }'
{
  "suggestedType": "RootDomain",
  "suggestions": [
    {
      "url": "string",
      "refDomains": 0,
      "backLinks": 0,
      "cost": 0,
      "state": "string"
    }
  ]
}
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}
{
  "error": {
    "type": "InvalidInput",
    "message": "Parameter url is invalid"
  }
}
{
  "error": {
    "type": "RateLimit",
    "message": "Not enough limits 2"
  }
}