Mangools/API

Get history of lookups

Get the history of your recent KWFinder keyword lookups. Returns both related-keyword queries and keyword URL lookups, enriched with keyword text, SEO rank, search location and language — useful for rebuilding a "recent searches" panel in a client.

GET
/kwfinder/requests

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

limit*integer

Limit number of result, max 25

Response Body

application/json

application/json

curl -X GET "https://api.mangools.com/v3/kwfinder/requests?limit=0"
[
  {
    "kw": "seo",
    "language": {
      "code": "en",
      "label": "English",
      "_id": 1000
    },
    "location": {
      "_id": 0,
      "label": "Slovakia",
      "code": "us"
    },
    "rank": 70,
    "rank_ts": 1592976768,
    "t": 0
  }
]
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}