List sandbox source-adapter records

GET/sources/available

Lists sample source-adapter records exposed by the hosted sandbox. These records support integration evaluation and do not claim generally available production adapters; provisioned beta integrations require a separate design-partner agreement.

Response

slug

URL-safe stable identifier.

string
display_name

Human-readable name of the source platform.

string
api_tier

One of: managed, guided.

managed | guided
auth_type

How the platform is authenticated (e.g. `oauth`, `manual`).

string
website

Marketing or documentation URL for the source platform.

string
description

Human-readable description.

string
Request
bash
curl -sS "https://phosra-api-sandbox-production.up.railway.app/api/v1/sources/available"
Response
json
[
  {
    "slug": "string",
    "display_name": "string",
    "api_tier": "managed",
    "auth_type": "string",
    "website": "string",
    "description": "string"
  }
]