Mangools/API

Authentication

Authenticate with the Mangools API using your x-access-token API key.

Mangools API involves verifying the identity of the client sending a request according to x-access-token (API key) request header.

How to get an API key

To get your own API key, register for a free account at mangools.com and copy it at mangools.com/api-token.

Request examples

cURL

curl -X GET "https://api.mangools.com/v3/kwfinder/related-keywords?kw=seo" \
  -H "X-Access-Token: YOUR_API_KEY"

Node.js

const res = await fetch("https://api.mangools.com/v3/kwfinder/related-keywords?kw=seo", {
  headers: {
    "X-Access-Token": "YOUR_API_KEY",
  },
});
const data = await res.json();
console.log(data);

Bash (wget)

wget -qO- "https://api.mangools.com/v3/kwfinder/related-keywords?kw=seo" \
  --header="X-Access-Token: YOUR_API_KEY"

On this page