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 OnPage Report

Get all pages and their corresponding onpage report

PreviousFind Content IdeasNextAdd Keyword to Project

Last updated 8 months ago

Get all Page Reports

get
Query parameters
project_idintegerRequired
offsetintegerOptional
limitintegerOptional
Responses
200
Successful operation
application/json
400
Invalid API Credentials or Project not found
application/json
429
Rate limit exceeded
application/json
get
GET /pages HTTP/1.1
Host: api.ranklytics.ai
Accept: */*
{
  "status": "text",
  "offset": 1,
  "limit": 1,
  "pages": [
    {
      "title": "text",
      "url": "text",
      "description": "text",
      "internal_links": 1,
      "external_links": 1,
      "images": 1,
      "render_blocking_scripts_count": 1,
      "word_count": 1,
      "readability_index": 1,
      "last_modified_header": "2025-05-17T01:34:59.358Z"
    }
  ]
}