---
title: "List scraped URLs in a knowledge base + their status"
method: GET
path: "/knowledgebase/{id}/scraped-urls"
tags: ["Knowledge Base"]
---

# List scraped URLs in a knowledge base + their status

`GET /knowledgebase/{id}/scraped-urls`

Returns every URL added to the knowledge base via `POST /knowledgebase/{id}/scrape-urls`, with its current scrape/index status. Poll this after kicking off a scrape job to track progress.

## Path parameters

- `id` string, required

## Response `200`

Successful response.

- object
  - `status` boolean
  - `data` object[]
    - `_id` string
    - `url` string, uri
    - `status` string — Current scrape/index status (e.g. `pending`, `scraping`, `indexed`, `failed`).
    - `createdAt` string, date-time
    - `updatedAt` string, date-time

## Other responses

- `401` — Unauthorized access
- `500` — Internal server error

---

[API](https://skmtc.net/smallest-inc/apis/agent-management-api.md) · [All operations](https://skmtc.net/smallest-inc/apis/agent-management-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/smallest-inc/agent-management-api/versions/6d1036a76fbc/schema)
