CaptAPI Account · Guide

How to get CaptAPI Account most used routes

TL;DR
To get CaptAPI Account most used routes, sign up for a free Captapi key, then send one GET request to /v1/account/most-used-routes with your input. You get clean JSON back in seconds for 0 credits per call — no OAuth, scraping or platform SDKs. Ranked list of which Captapi routes your key calls most (0 credits).

How to get CaptAPI Account most used routes (step by step)

  1. 1

    Get a free API key

    Create a free Captapi account (100 credits, no card) and generate an API key from the dashboard.

  2. 2

    Call the Most Used Routes API

    Send an authenticated GET request to /v1/account/most-used-routes with your input. No OAuth, no scraping setup.

  3. 3

    Read the JSON response

    Parse the clean JSON response. Pass cache=true for a free 24h cache hit; default is always fresh.

Code example

curl "https://api.captapi.com/v1/account/most-used-routes?days=value" \
  -H "Authorization: Bearer capt_live_..."
# or: -H "x-api-key: capt_live_..."

What the response looks like

{
  "success": true,
  "data": {
    "days": 30,
    "totalReturned": 5,
    "routes": [
      {
        "endpoint": "/v1/instagram/details",
        "platform": "instagram",
        "requests": 161,
        "creditsUsed": 46,
        "successfulRequests": 161,
        "failedRequests": 0
      },
      {
        "endpoint": "/v1/instagram/basic-profile",
        "platform": "instagram",
        "requests": 3,
        "creditsUsed": 2,
        "successfulRequests": 3,
        "failedRequests": 0
      }
    ]
  }
}

Billing metadata (credits charged, cache hit/miss) is returned in the X-Captapi-Credits and X-Captapi-Cache response headers.

Request parameters

NameTypeRequiredDescription
daysintegerNoNumber of days to include (default 30, max 365).
limitintegerNoMax rows to return (default 20, max 100). Free — does not consume credits.

Frequently asked questions

What does the Most Used Routes API do?

The Most Used Routes API returns most used routes for your Captapi API key via one GET request to /v1/account/most-used-routes. It returns clean JSON and does not charge credits.

How many credits does the Most Used Routes API cost?

Account endpoints are free — they do not consume credits.

Do I need a CaptAPI Account API key or OAuth?

You only need your Captapi API key (Authorization: Bearer). No third-party OAuth is required.

Is the Most Used Routes API suitable for production use?

Yes. It is a stable REST endpoint with predictable JSON. Account endpoints are always live (never cached) and do not charge credits.

Ready to get CaptAPI Account most used routes?

Start free with 100 credits — no credit card required.

Get your free API key