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>

Your Mangools API key

In: header

Query Parameters

limit*integer

Limit number of result, max 25

Response Body

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": null
    },
    "rank": 70,
    "rank_ts": 1592976768,
    "t": 0
  }
]