---
title: "List rejections for a collection"
method: GET
path: "/webdbs/collections/{collection_id}/rejections"
tags: ["webdbs"]
---

# List rejections for a collection

`GET /webdbs/collections/{collection_id}/rejections`

Returns pages that did not become rows and explains why.

## Path parameters

- `collection_id` string, required — Collection ID.

## Query parameters

- `limit` integer — Maximum items to return. Defaults to 25.
- `cursor` string — Pagination cursor from a previous response.
- `since` string — Return entries at or after this time.
- `tags` string[] — Optional tags for tracking usage. Up to 20 tags, each 1 to 50 characters.

## Response `200`

A paginated list of rejections, newest first

- WebdbsListRejectionsResponse — A page of rejected source pages.
  - `data` WebdbsRejection[], required — Rejected pages in this page.
    - `url` string, required — Page URL.
    - `stage` 'fetch' | 'prefilter' | 'semantic' | 'validation', required — Step where the page was rejected.
    - `score` number, nullable, required — Eligibility score, or null when no score was used.
    - `reason` string, required — Reason the page was rejected.
    - `at` string, date-time, required — Time the page was rejected.
  - `has_more` boolean, required — Whether another page is available.
  - `next_cursor` string, nullable, required — Cursor for the next page, or null at the end.
  - `key_metadata` object — API key usage for this request.
    - `credits_consumed` integer, required — The number of credits consumed by this request.
    - `credits_remaining` integer, required — The number of credits remaining for your organization after this request.

## Other responses

- `400` — Bad request
- `401` — Unauthorized
- `404` — Not found

---

[API](https://skmtc.net/context/apis/context-dev.md) · [All operations](https://skmtc.net/context/apis/context-dev/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/context/context-dev/versions/182f532c2552/schema)
