Mangools/API

Get trends

Deprecated — no fresh data since January 2025. Previously returned monthly search volume trends for a given keyword sourced from Google Trends. Cached results are still served; uncached queries return an empty data array. New integrations should rely on the search volume history returned by /kwfinder/keyword-imports.

GET
/kwfinder/trends

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

kw*string

keyword

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://api.mangools.com/v3/kwfinder/trends?kw=string"
{
  "created_at": 1592698144,
  "data": [
    {
      "t": 1072915200,
      "v": 7
    }
  ],
  "_id": "60c17e52b1a34354b23d70662f75adb3"
}
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}
{
  "error": {
    "type": "ValidationError",
    "message": "Your request is invalid",
    "errors": [
      "\"kw\" is required"
    ]
  }
}
{
  "error": {
    "type": "RateLimit",
    "message": "Not enough limits 2"
  }
}