Skip to main content
GET
/
live
/
{source}
/
manifest
Describe a source's full live query surface
curl --request GET \
  --url https://api.hyperspell.com/live/{source}/manifest \
  --header 'Authorization: Bearer <token>'
{
  "capabilities": [],
  "raw_read_ops": [
    {
      "name": "<string>",
      "path": "<string>",
      "description": "<string>",
      "method": "GET",
      "params": {},
      "graphql": false
    }
  ],
  "raw_discovery": "<string>",
  "guidance": [
    "<string>"
  ],
  "resolvable": [
    "<string>"
  ]
}

Authorizations

Authorization
string
header
required

API Key or JWT User Token. If using an API Key, set the X-As-User header to act as a specific user. A JWT User Token is always scoped to a specific user.

Path Parameters

source
enum<string>
required
Available options:
reddit,
notion,
slack,
google_calendar,
google_mail,
box,
dropbox,
github,
google_drive,
vault,
web_crawler,
trace,
microsoft_teams,
gmail_actions,
granola,
fathom,
fireflies,
linear,
hubspot,
salesforce,
coda,
lightfield

Query Parameters

connection_id
string | null

Specific connection id.

Response

Successful Response

Everything the caller can ask of a source — read before composing a query.

source
enum<string>
required
Available options:
reddit,
notion,
slack,
google_calendar,
google_mail,
box,
dropbox,
github,
google_drive,
vault,
web_crawler,
trace,
microsoft_teams,
gmail_actions,
granola,
fathom,
fireflies,
linear,
hubspot,
salesforce,
coda,
lightfield
auth_provider
enum<string> | null
required
Available options:
nango,
unified,
whitelabel
capabilities
enum<string>[]
required

Live-access capabilities an integration may implement.

Used by LiveSourceAccess (and its LLM/HTTP surfaces) to advertise what a connected source can do on-demand. LIST_RESOURCES / FETCH_RESOURCE / SEARCH_LIVE are detected via method-override introspection (see Integration.supports), so they reflect reality with no per-integration declaration to keep in sync.

PASSTHROUGH is the exception: it is declared (via live_raw_read_ops), not introspected — see specs/components/live-query-framework.md. A source supports it when it exposes a non-empty raw read surface (the agent composes raw provider reads against it).

Available options:
list_resources,
fetch_resource,
search_live,
passthrough,
resolve,
query_structured
raw_read_ops
RawReadOp · object[]
required
raw_discovery
string
required
guidance
string[]
resolvable
string[]