RankVectorsRankVectors
    FeaturesPricing
    Log in →
    • Introduction
    • Quickstart
    • Authentication
    • Syncing Content
    • Generating Link Suggestions
    • Implementing Links
    • Integrations Overview
    • JavaScript SDK
    • TypeScript SDK
    • Python SDK
    • Go SDK
    • PHP SDK
    • C# SDK
    • Ruby SDK
    • Rust SDK
    • API Reference Overview
    • Projects API
    • Pages API
    • Suggestions API
    • Implementations API
    • Analytics API
    • Integrations Overview
    • WordPress Integration
    • Shopify Integration
    • Vercel Integration
    • Custom Integration

    Pages API

    Sync and manage page content

    Batch Sync Pages

    Sync multiple pages at once:

    POST /api/projects/{projectId}/pages/batch
    

    Request Body:

    [
      {
        "url": "https://example.com/page1",
        "content": "Page content...",
        "title": "Page 1",
        "statusCode": 200
      },
      {
        "url": "https://example.com/page2",
        "content": "Page content...",
        "title": "Page 2",
        "statusCode": 200
      }
    ]
    

    Response:

    {
      "data": {
        "synced": 2,
        "failed": 0
      }
    }
    

    List Pages

    List all pages for a project:

    GET /api/projects/{projectId}/pages
    

    Query Parameters:

    • limit - Number of results (default: 50)
    • offset - Pagination offset (default: 0)

    Response:

    {
      "data": [
        {
          "id": "page_123",
          "url": "https://example.com/page1",
          "title": "Page 1",
          "statusCode": 200,
          "lastSyncedAt": "2024-01-01T00:00:00Z"
        }
      ]
    }
    

    Get Page

    Get a specific page:

    GET /api/projects/{projectId}/pages/{pageId}
    

    Response:

    {
      "data": {
        "id": "page_123",
        "url": "https://example.com/page1",
        "title": "Page 1",
        "content": "Page content...",
        "statusCode": 200,
        "lastSyncedAt": "2024-01-01T00:00:00Z"
      }
    }
    
    PreviousProjects APINextSuggestions API
    RankVectorsRankVectors

    AI-powered internal linking optimization. Improve your SEO with intelligent semantic analysis and automated link recommendations.

    XGitHubLinkedIn

    Product

    • Features
    • Pricing
    • Documentation
    • Integrations

    Support

    • Documentation
    • Quick Start
    • API Reference
    • Contact

    Company

    • About
    • Blog
    • Contact
    • Partners

    Legal

    • Privacy Policy
    • Terms of Service
    • Cookie Policy

    © 2025 RankVectors. All rights reserved.