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

URL report

GET
/v1/url-report
The Indexing Insight URL report endpoint allows developers to view historic and current indexing data for a specific monitored page URL.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.indexinginsight.com/v1/url-report?url=https://indexinginsight.com/'
Response Response Example
200 - Example 1
{
    "url": "https://indexinginsight.com/",
    "index_summary": "Indexed",
    "index_coverage_state": "Submitted and indexed",
    "indexing_allowed": "Yes",
    "google_selected_canonical": "https://indexinginsight.com/",
    "user_selected_canonical": null,
    "googlebot_primary_crawler": "MOBILE",
    "last_crawl_time": "2025-05-03T03:47:29.000Z",
    "days_since_last_crawl": 10,
    "page_fetch_status": "Successful",
    "blocked_by_robots_txt": "No",
    "sitemaps": [
        "https://indexinginsight.com/sitemap.xml"
    ],
    "inspection_date": "2025-05-13T01:00:09.738Z",
    "page_detection": "2023-11-23T10:50:42.571Z",
    "inspection_link": "https://search.google.com/search-console/inspect?resource_id=https://indexinginsight.com/&id=xxxx&utm_medium=link&utm_source=api",
    "indexing_insight_link": "https://app.indexinginsight.com/domain/555f2e5dd8bc9b7bd8b68ab1/pages/555f2e82d8aa9b7bd8b68ac3",
    "previously_indexed": "Yes",
    "previously_indexed_timestamp": "2025-05-13T01:00:09.738Z",
    "previously_indexed_link": "https://search.google.com/search-console/inspect?resource_id=https://indexinginsight.com/&id=xxxx&utm_medium=link&utm_source=api",
    "canonical_changed": "Yes",
    "canonical_changed_google_canonical": "https://indexinginsight.com/",
    "canonical_changed_user_canonical": "https://indexinginsight.com/",
    "canonical_changed_timestamp": "2024-10-31T01:00:17.611Z",
    "canonical_changed_link": "https://search.google.com/search-console/inspect?resource_id=https://indexinginsight.com/&id=xxxx&utm_medium=link&utm_source=api",
    "ever_blocked_by_robots_txt": "No",
    "ever_blocked_by_robots_txt_timestamp": null,
    "ever_blocked_by_robots_txt_link": null
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params
url
string <uri>
required
URL of the page
Example:
https://indexinginsight.com/
fields
string 
optional
List of fields to return separeted by comma
Example:
url,index_summary,index_coverage_state

Responses

🟢200Success
application/json
Body
url
string <uri>
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.
indexing_allowed
string  | null 
required
Indicates if Google was allowed or not allowed to index the page through meta robots noindex.
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.
googlebot_primary_crawler
string  | null 
required
The primary Googlebot user-agent that crawled 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.
page_fetch_status
string  | null 
required
Indicates if Google could successfully fetch and download the page from the server.
blocked_by_robots_txt
string  | null 
required
Indicates if Google's primary crawler was blocked by robots.txt.
sitemaps
array[string]
required
The list of sitemaps where the URL was found by Indexing Insight.
inspection_date
string <date-time> | null 
required
The time the page was inspected using the URL Inspection API.
page_detection
string <date-time>
required
The time that Indexing Insight detected the page in the tool.
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.
previously_indexed
string 
required
Indexing Insight detected the page was ever indexed.
previously_indexed_timestamp
string <date-time> | null 
required
The timestamp when Indexing Insight detected the page was last indexed.
previously_indexed_link
string <uri> | null 
required
The link to the URL Inspection tool for a URL in Google Search Console for the last indexed detection.
canonical_changed
string 
required
Indexing Insight detected a change in the Google-selected canonical URL.
canonical_changed_google_canonical
string  | null 
required
The Google selected canonical URL detected during the change.
canonical_changed_user_canonical
string  | null 
required
The user declared canonical URL detected during the change.
canonical_changed_timestamp
string <date-time> | null 
required
The time when Indexing Insight detected the Google selected canonical URL change.
canonical_changed_link
string <uri> | null 
required
The link to the URL Inspection tool in GSC when the Google canonical URL changed.
ever_blocked_by_robots_txt
string 
required
Indexing Insight detected if the robots.txt blocked Google from crawling the page.
ever_blocked_by_robots_txt_timestamp
string <date-time> | null 
required
The time when Indexing Insight detected the robots.txt blocked Google from crawling the page.
ever_blocked_by_robots_txt_link
string <uri> | null 
required
The link to the URL Inspection tool in GSC when the robots.txt block was detected.
🟠400Bad Request
🟠403Forbidden
🟠401Unauthorized
🟠404Record Not Found
Modified at 2025-06-06 13:05:39
Previous
API key details
Next
Index coverage
Built with