Mangools/API

Export keywords into CSV file

fields can be used to filter columns you wish to include in the export. possible values include:

  • kw: Keyword
  • sv: Avg. Search Volume
  • lid: Location
  • cpc: Cost per click
  • ppc: Pay per click
  • seo: Keyword difficulty
  • msv: Monthly Search Volume

Prerequisites

The keyword_ids are Mangools-specific identifiers returned by keyword-producing endpoints — call one of /kwfinder/keyword-imports, /kwfinder/related-keywords, /kwfinder/competitor-keywords, /kwfinder/suggested-keywords, or /kwfinder/serps first and reuse the _id values (or mId for SERP items). IDs that do not correspond to known keywords are silently dropped from the response.

POST
/kwfinder/keywords

Authorization

ApiKeyAuth
x-access-token<token>

Your Mangools API key

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

body?unknown

Response Body

curl -X POST "https://api.mangools.com/v3/kwfinder/keywords" \  -H "Content-Type: application/json" \  -d '{    "keyword_ids": [      [        "916647301d98e2ec41df257cbdf97ac0",        "916647301d98e2ec41df257cbdf97ac0"      ]    ]  }'
Empty