Get all lists
Get all keyword lists saved on your account, sorted newest first. Each list returns its id, name and the ids of the keywords it contains. Use GET /kwfinder/lists/{list_id} to load the full keyword data for a specific list.
Authorization
ApiKeyAuth x-access-token<token>
Your Mangools API key
In: header
Response Body
application/json
curl -X GET "https://api.mangools.com/v3/kwfinder/lists"[
{
"name": "My Awesome Keyword List",
"user_id": "005de7e7771450763339653e918778ef",
"keyword_ids": [
"005de7e7771450763339653e918778ef",
"005de7e7771450763339653e918778ef"
],
"created_at": 1590868935
}
]