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
website_id
string <regex>
required
ID of Website
Match pattern:
[0-9a-fA-F]{24}
Query Params
skip
number 
optional
Specifies the number of items to skip before starting to collect the response set.
>= 0
Default:
0
limit
number 
optional
Specifies the maximum number of items to return in a single response.
<= 100
Default:
100
segment
string 
optional
Filter by segment
index_summary
string 
optional
Filter by index_summary
index_coverage_state
string 
optional
Filter by index_coverage_state

Responses

🟢200Success
application/json
Body
urls
array [object {9}] 
required
url
string 
required
URL of the page.
index_summary
string  | null 
required
If the page is indexed or not indexed in Google Search.
index_coverage_state
string  | null 
required
The indexing state of the page in Google Search Console.
google_selected_canonical
string  | null 
required
The canonical URL chosen by Google's Search Index
user_selected_canonical
string  | null 
required
The declared canonical URL on the page.
last_crawl_time
string <date-time> | null 
required
The last time the page was crawled by the primary crawler.
days_since_last_crawl
integer  | null 
required
The number of days since Google last crawled the page.
inspection_link
string <uri> | null 
required
The link to the URL Inspection tool for a URL in Google Search Console.
indexing_insight_link
string <uri>
required
The link to the URL report on Indexing Insight app.
pagination
object 
required
next_page
string <uri> | null 
required
prev_page
string <uri> | null 
required
end
boolean 
required
count
integer 
required
skip
integer 
required
limit
integer 
required
current_page
integer 
required
total_page
integer 
required
🟠403Forbidden
🟠401Unauthorized
🟠404Record Not Found
Modified at 2025-06-06 13:06:02
Previous
URL report
Built with