Skip to main content
GET
/
api
/
airbyte
/
sources
List available PyAirbyte sources
curl --request GET \
  --url https://api.example.com/api/airbyte/sources \
  --header 'Authorization: Bearer <token>'
{
  "sources": [
    {
      "name": "<string>",
      "package_name": "<string>",
      "display_name": "<string>",
      "category": "<string>",
      "description": "",
      "config_fields": [
        {
          "name": "<string>",
          "title": "<string>",
          "type": "string",
          "required": true,
          "secret": false,
          "description": ""
        }
      ],
      "config_template": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Response

List of available source connectors.

Response listing all available PyAirbyte source connectors.

sources
AirbyteSourceInfo · object[]

List of available source connectors.