---
title: "List sources"
method: GET
path: "/workspaces/{ws_id}/sources"
tags: ["Source"]
---

# List sources

`GET /workspaces/{ws_id}/sources`

## Query parameters

- `page_no` integer
- `page_size` integer
- `limit` integer
- `sort` 'id.desc' | 'id.asc'
- `after` string
- `before` string
- `name` string
- `enabled` boolean
- `created_at` union
  - object
    - `gt` integer
    - `gte` integer
    - `lt` integer
    - `lte` integer
  - integer
- `metadata` object

## Response `200`

OK

- union
  - object
    - `total` integer — Total number of resources.
    - `data` object[] — List of resources
      - `id` string
      - `name` string, nullable
      - `enabled` boolean
      - `type` 'http'
      - `config` object, required
        - `http` HTTPSourceConfig, required
          - `path` string
          - `methods` string[]
          - `response` object, nullable
            - `code` integer, required
            - `content_type` string, required
            - `body` string
      - `async` boolean — Whether to ingest events asynchronously through the queue
      - `metadata` Metadata
      - `rate_limit` RateLimit, nullable — The rate limit that uses GCRA algorithm (a variant of the leaky bucket algorithm that supports bursts).
        - `quota` integer, required — Rate limiting quota that allowed in every period.
        - `period` integer, required — Rate limiting period in seconds.
      - `created_at` integer
      - `updated_at` integer
  - object
    - `next` string, nullable — URI to next page when available.
    - `prev` string, nullable — URI to previous page when available.
    - `data` object[] — List of resources
      - `id` string
      - `name` string, nullable
      - `enabled` boolean
      - `type` 'http'
      - `config` object, required
        - `http` HTTPSourceConfig, required
          - `path` string
          - `methods` string[]
          - `response` object, nullable
            - `code` integer, required
            - `content_type` string, required
            - `body` string
      - `async` boolean — Whether to ingest events asynchronously through the queue
      - `metadata` Metadata
      - `rate_limit` RateLimit, nullable — The rate limit that uses GCRA algorithm (a variant of the leaky bucket algorithm that supports bursts).
        - `quota` integer, required — Rate limiting quota that allowed in every period.
        - `period` integer, required — Rate limiting period in seconds.
      - `created_at` integer
      - `updated_at` integer

## Changes

- **2026-04-23** `615fab6a6d38` — 1 breaking, 3 warning, 11 info
  - added `subschema #1, subschema #2` to the response body `oneOf` list for the response status `200`
  - for the `query` request parameter `page_size`, the max was set to `1000.00`
  - for the `query` request parameter `page_no`, the min was set to `1.00`
  - for the `query` request parameter `page_size`, the min was set to `1.00`
  - …11 more
- **2025-11-17** `3a66f430a761` — 2 breaking, 1 warning, 2 info
  - removed the required property `allOf[subschema #2]/data/items/methods` from the response with the `200` status
  - removed the required property `allOf[subschema #2]/data/items/path` from the response with the `200` status
  - removed the optional property `allOf[subschema #2]/data/items/response` from the response with the `200` status
  - added the optional property `allOf[subschema #2]/data/items/type` to the response with the `200` status
  - …1 more
- **2025-09-12** `a69667e09d64` — 1 info
  - added the optional property `allOf[subschema #2]/data/items/rate_limit` to the response with the `200` status
- …earlier changes not shown

[Full history](https://skmtc.dev/webhookx-io/apis/webhookx-admin-api/changes/workspaces/:ws_id/sources/get.md)

---

[API](https://skmtc.dev/webhookx-io/apis/webhookx-admin-api.md) · [All operations](https://skmtc.dev/webhookx-io/apis/webhookx-admin-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/webhookx-io/webhookx-admin-api/revisions/0afb563ce365/schema)
