> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

# Get Website Status

GET https://fai.buildwithfern.com/sources/website/{domain}/status

Get the status of a website crawling job.

Reference: https://fern.docs.buildwithfern.com/learn/docs/ai-features/ask-fern/api-reference/website/get-website-status

## Authentication

- `Authorization` header (bearer token, required)

## Servers

- `https://fai.buildwithfern.com` (Production, default)
- `https://fai-dev.buildwithfern.com` (Development)
- `http://localhost:8080` (Local)

## Request

### Path parameters

- `domain` (string, required)

### Query parameters

- `job_id` (string, required) — The job ID returned from the index endpoint

## Response

### 200

Successful Response

- `job_id` (string, required)
- `status` (string, required) — Job status: PENDING, PROCESSING, COMPLETED, or FAILED
- `base_url` (string, required)
- `pages_indexed` (integer, required) — Number of pages successfully indexed
- `pages_failed` (integer, required) — Number of pages that failed to index
- `error` (string, optional, nullable) — Error message if the job failed

## Examples

**Response**

```json
{
  "job_id": "string",
  "status": "string",
  "base_url": "string",
  "pages_indexed": 1,
  "pages_failed": 1,
  "error": "string"
}
```