List provider
Returns every registered integration provider together with THIS org's connection status for it — the catalog the console's Integrations page renders.
GET /v1/provider
| Address | https://api.hanzo.ai/v1/provider |
| Method | GET |
| Operation | get_provider |
| Auth | Authorization: Bearer $HANZO_API_KEY |
Returns every registered integration provider together with THIS org's connection status for it — the catalog the console's Integrations page renders. Org-authed: a caller with no validated principal is 403, because the status is per-org and there is no org-less answer. User-plane providers (the /v1/connection surface) are omitted; the two planes are disjoint.
Request
GET /v1/provider takes no parameters and no body — the credential is the whole request.
Response
| Status | Body | Meaning |
|---|---|---|
200 | provider.listOut | ok |
default | problem-details | refused |
200 body — 18 fields.
| Field | In | Type | Always | Description |
|---|---|---|---|---|
providers | body | provider.providerView[] | — | Providers is the whole catalog. |
providers[].available | body | boolean | — | Available is whether THIS DEPLOYMENT has the provider's app credentials, so connect can succeed. |
providers[].category | body | string | — | Category groups the card ("Communication", "Developer", "Marketing"). |
providers[].connected | body | boolean | — | Connected is whether this org has a live connection to the provider. |
providers[].connection | body | provider.connectionView | — | |
providers[].connection.account | body | string | — | Account is the human label of the connected third-party account (the Slack team name, the GitHub org login). |
providers[].connection.connectedAt | body | string | — | ConnectedAt is when the connection was last (re)established, RFC 3339 UTC. |
providers[].connection.expiresAt | body | string | — | ExpiresAt is when the access token expires, RFC 3339 UTC; empty for a credential that does not expire. |
providers[].connection.externalId | body | string | — | ExternalID is the provider's own id for the account (Slack team.id, GitHub installation_id) — the value inbound webhooks are mapped back to this org by. |
providers[].connection.id | body | string | — | ID is provider + ":" + label, the address every connection route takes. |
providers[].connection.label | body | string | — | Label is the caller's own name for this connection ("default", "work"). |
providers[].connection.provider | body | string | — | Provider is the connected provider's registry id. |
providers[].connection.scopes | body | string[] | — | Scopes are the permissions the provider granted. |
providers[].description | body | string | — | Description is the one-line pitch the console card shows. |
providers[].id | body | string | — | ID is the provider's registry id and the :provider path segment ("slack"). |
providers[].modes | body | string[] | — | Modes are the ways this provider can be connected, derived from what it actually declares — "managed", "oauth", "apikey", "device", "mcp". |
providers[].name | body | string | — | Name is the provider's display name ("Slack"). |
providers[].scopes | body | string[] | — | Scopes are the permissions a connection will ask for. |
Failure carries the platform error shape — see Errors.
Examples
hanzo provider listimport { Configuration, ProviderApi } from 'hanzoai';
const api = new ProviderApi(new Configuration({ accessToken: process.env.HANZO_API_KEY }));
const { data } = await api.getProvider();from hanzoai.cloud import ApiClient, Configuration
from hanzoai.cloud.api import ProviderApi
client = ApiClient(Configuration(access_token=os.environ["HANZO_API_KEY"]))
result = ProviderApi(client).get_provider()cfg := hanzoai.NewConfiguration()
cfg.AddDefaultHeader("Authorization", "Bearer "+os.Getenv("HANZO_API_KEY"))
client := hanzoai.NewAPIClient(cfg)
resp, _, err := client.ProviderAPI.GetProvider(context.Background()).Execute()
if err != nil {
return err
}use hanzo_client::apis::{configuration::Configuration, provider_api};
let mut cfg = Configuration::new();
cfg.bearer_access_token = std::env::var("HANZO_API_KEY").ok();
let result = provider_api::get_provider(&cfg, Default::default()).await?;import ai.hanzo.cloud.ApiClient;
import ai.hanzo.cloud.api.ProviderApi;
ApiClient client = new ApiClient();
client.setBearerToken(System.getenv("HANZO_API_KEY"));
var result = new ProviderApi(client).getProvider();curl https://api.hanzo.ai/v1/provider \
-H "Authorization: Bearer $HANZO_API_KEY"MCP declares no tool for provider — tools/list on https://api.hanzo.ai/v1/mcp names the products it does reach. Use HTTP or an SDK.
How is this guide?