> 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://buildwithfern.com/learn/docs/ai-features/ask-fern/api-reference/website/get-website-status ## Authentication - `Authorization` header (bearer token, required) — Bearer authentication of the form `Bearer `, where token is your auth token. ## 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 ## Errors ### 422 Unprocessable Entity Error Validation Error - `detail` (list of object, optional) - `loc` (list of string or integer, required) - `msg` (string, required) - `type` (string, required) ## Examples **Request** ```json {} ``` **Response** ```json { "job_id": "a1b2c3d4-e5f6-7890-ab12-cd34ef567890", "status": "PROCESSING", "base_url": "https://example.com", "pages_indexed": 42, "pages_failed": 3, "error": null } ```