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

Get Keywords

Get all tracked keywords within your project along with their search volume and competition index.

PreviousGet ProjectsNextGet Content

Last updated 8 months ago

Get Tracked Keywords

get
Query parameters
project_idintegerRequired
offsetintegerOptional
limitintegerOptional
Responses
200
Successful operation
application/json
400
Invalid API Credentials
application/json
429
Rate limit exceeded
application/json
get
GET /keywords HTTP/1.1
Host: api.ranklytics.ai
Accept: */*
{
  "status": "text",
  "keywords": [
    {
      "id": 1,
      "project_id": 1,
      "seed_keyword": "text",
      "keyword": "text",
      "search_volume": "text",
      "competition_index": 1,
      "rank": 1,
      "last_updated_on": "2025-05-17",
      "last_rank_checked": "2025-05-17"
    }
  ]
}