Ranklytics API
  • Getting Started
    • Introduction
    • Authentication
  • Endpoints
    • Get Projects
    • Get Keywords
    • Get Content
    • Get Rankings
    • Find Keywords
    • Find Content Ideas
    • Get OnPage Report
    • Add Keyword to Project
    • Add a Content Idea
Powered by GitBook
On this page
  1. Endpoints

Find Keywords

Find keyword ideas based on a seed keyword

PreviousGet RankingsNextFind Content Ideas

Last updated 8 months ago

Find Keywords

post
Body
project_idintegerOptional
keywordstringOptional
Responses
200
Successful operation
application/json
400
Invalid API Credentials
application/json
429
Rate limit exceeded
application/json
post
POST /findKeywords HTTP/1.1
Host: api.ranklytics.ai
Content-Type: application/json
Accept: */*
Content-Length: 33

{
  "project_id": 1,
  "keyword": "text"
}
{
  "status": "text",
  "keywords": [
    {
      "keyword": "text",
      "competition": "text",
      "competition_index": 1,
      "search_volume": "text",
      "difficulty": "text",
      "in_account": 1
    }
  ]
}