Indexing Insight API
  1. References
Indexing Insight API
  • Getting Started
  • Guides
    • Authorization
    • Rate limiting
    • Response errors
    • API key details
    • URL report
    • Index coverage
  • Clients
    • Screaming Frog
    • Google Sheets
  • References
    • API key details
      GET
    • URL report
      GET
    • Index coverage
      GET
  1. References

Index coverage

GET
/v1/urls/{website_id}
The Index Coverage endpoint allows developers to view a list of all the monitored page URLs and valuable indexing data for a specific domain.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.indexinginsight.com/v1/urls/'
Response Response Example
200 - Example 1
{
    "urls": [
        {
            "url": "https://indexinginsight.com/",
            "index_summary": "Indexed",
            "index_coverage_state": "Submitted and indexed",
            "canonicals_match": true,
            "google_selected_canonical": "https://indexinginsight.com/",
            "user_selected_canonical": "https://indexinginsight.com/",
            "last_crawl_time": "2025-03-11T18:32:06.000Z",
            "days_since_last_crawl": 64,
            "inspection_link": "https://search.google.com/search-console/inspect?resource_id=https://indexinginsight.com/&id=xxx&utm_medium=link&utm_source=api",
            "indexing_insight_link": "https://app.indexinginsight.com/domain/555f2e5dd8bc9b7bd8b68ab1/pages/555f2e82d8aa9b7bd8b68ac3"
        },
        {
            "url": "https://indexinginsight.com/lorem/ipsum",
            "index_summary": "Not Indexed",
            "index_coverage_state": "URL is unknown to Google",
            "canonicals_match": null,
            "google_selected_canonical": null,
            "user_selected_canonical": "https://indexinginsight.com/lorem/ipsum",
            "last_crawl_time": null,
            "days_since_last_crawl": null,
            "inspection_link": "https://search.google.com/search-console/inspect?resource_id=https://indexinginsight.com/&id=xxx&utm_medium=link&utm_source=api",
            "indexing_insight_link": "https://app.indexinginsight.com/domain/555f2e5dd8bc9b7bd8b68ab1/pages/555f2e82d8aa9b7bd8b68ac2"
        },
        {
            "url": "https://indexinginsight.com/ipsum",
            "index_summary": "Not Indexed",
            "index_coverage_state": "Discovered – currently not indexed",
            "canonicals_match": false,
            "google_selected_canonical": "https://indexinginsight.com/ipsum",
            "user_selected_canonical": "https://www.indexinginsight.com/ipsum",
            "last_crawl_time": null,
            "days_since_last_crawl": null,
            "inspection_link": "https://search.google.com/search-console/inspect?resource_id=https://indexinginsight.com/&id=xxx&utm_medium=link&utm_source=api",
            "indexing_insight_link": "https://app.indexinginsight.com/domain/555f2e5dd8bc9b7bd8b68ab1/pages/555f2e82d8aa9b7bd8b68ac3"
        },
        {
            "url": "https://indexinginsight.com/lorem",
            "index_summary": null,
            "index_coverage_state": null,
            "google_selected_canonical": null,
            "user_selected_canonical": null,
            "last_crawl_time": null,
            "days_since_last_crawl": null,
            "inspection_link": null,
            "indexing_insight_link": "https://app.indexinginsight.com/domain/555f2e5dd8bc9b7bd8b68ab1/pages/555f2e82d8aa9b7bd8b68ac3"
        },
        {
            "url": "https://indexinginsight.com/dolor/sit",
            "index_summary": null,
            "index_coverage_state": null,
            "google_selected_canonical": null,
            "user_selected_canonical": null,
            "last_crawl_time": null,
            "days_since_last_crawl": null,
            "inspection_link": null,
            "indexing_insight_link": "https://app.indexinginsight.com/domain/555f2e5dd8bc9b7bd8b68ab1/pages/555f2e82d8aa9b7bd8b68ac3"
        }
    ],
    "pagination": {
        "next_page": "/v1/urls/555f2e5dd8bc9b7bd8b68ab1?skip=5&limit=5",
        "prev_page": null,
        "end": false,
        "count": 5226,
        "skip": 0,
        "limit": 5,
        "current_page": 1,
        "total_page": 1046
    }
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Query Params

Responses

🟢200Success
application/json
Body

🟠403Forbidden
🟠401Unauthorized
🟠404Record Not Found
Modified at 2025-06-06 13:06:02
Previous
URL report
Built with