> ## Documentation Index
> Fetch the complete documentation index at: https://docs.markifact.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Inspect URL

> Inspects URLs in the Google index via the URL Inspection API: index verdict, coverage state, last crawl time, Google-selected vs user canonical, robots.txt state, referring sitemaps and pages, rich...

Inspects URLs in the Google index via the URL Inspection API: index verdict, coverage state, last crawl time, Google-selected vs user canonical, robots.txt state, referring sitemaps and pages, rich results, and AMP status. Each URL costs one API call; Google allows about 2,000 inspections per property per day.

|                      |                       |
| -------------------- | --------------------- |
| **App**              | Google Search Console |
| **Operation ID**     | `gsc_inspect_url`     |
| **Type**             | Action                |
| **Connection**       | `gsc` (required)      |
| **Credits per run**  | 1                     |
| **Agent / MCP tool** | Yes                   |

## Inputs

| Field           | Type                      | Required | Default | Description                                                                                                                                                                                                      |
| --------------- | ------------------------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `site`          | DynamicAccount            | Yes      | -       | Select the Search Console property the URLs belong to. URL-prefix properties look like `https://example.com/,` domain properties like sc-domain:example.com.                                                     |
| `urls`          | array of string or string | Yes      | -       | URLs to inspect, one per line or comma-separated. Each URL must be fully qualified and belong to the selected property. Each URL costs one API call; Google allows about 2,000 inspections per property per day. |
| `language_code` | string                    | No       | -       | IETF BCP-47 language code for translated issue messages, for example en-US or de-DE. Defaults to en-US.                                                                                                          |

## Output

**Type**: `List[Dict]`

Returns one row per URL with the raw inspectionResult fields (indexStatusResult, richResultsResult, ampResult, inspectionResultLink). Rows that failed inspection carry an error field instead.

**Fields**: dynamic (depend on the inputs)

**Example**:

```json theme={"dark"}
[
  {
    "url": "https://example.com/pricing",
    "indexStatusResult": {
      "verdict": "PASS",
      "coverageState": "Submitted and indexed",
      "lastCrawlTime": "2026-08-05T07:21:00Z",
      "googleCanonical": "https://example.com/pricing"
    }
  }
]
```
