Skip to main content
GET
/
api
/
v1
/
sources
/
config
List source configs (partner API)
curl --request GET \
  --url https://app.puffle.ai/api/v1/sources/config \
  --header 'Authorization: Bearer <token>'
{
  "configs": [
    {
      "source_id": "<string>",
      "enabled": true,
      "config": {},
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Overview

Returns every row the caller has saved in signal_source_configs — one entry per source they’ve customized (enabled/disabled, config blob). Sources NOT in the response list use system defaults (enabled, empty config).

AI agent notes

Absence means default. A source not in the returned configs array is implicitly enabled with an empty config. Don’t treat a missing row as “disabled.”Related: Update a source config (partner API) to create or change one.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Array of saved per-source configs.

configs
object[]
required