Get one provider
GET
/providers/{id}
const url = 'https://your-org.evershell.ai/v1/providers/example';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://your-org.evershell.ai/v1/providers/example \ --header 'Authorization: Bearer <token>'Permissions: any signed-in caller.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” id
required
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
id
required
string
org_id
string
name
required
string
kind
required
string
display_name
string
domain
required
string
credential_name
References a Credential by name
string
default_model
string
capabilities
Reference to the workspace’s caps.yaml capability block this provider matches
string
config
Provider-kind-specific extras (Azure api_version, Vertex project, etc.)
object
key
additional properties
any
created_at
string format: date-time
updated_at
string format: date-time
archived_at
string format: date-time
Example
{ "kind": "anthropic"}Resource not found in the caller’s org
Media type application/json
object
error
required
object
code
required
Closed-enum slug (e.g. permission_denied, validation_error, workspace_not_found)
string
message
required
Human-readable summary
string
request_id
required
Server-generated request id for correlating logs
string
details
Optional structured context. Validation errors land at
details.fields as a per-field map.
object
key
additional properties
any
Example
{ "error": { "code": "permission_denied", "message": "caller lacks required scope", "request_id": "7f3a9c2e" }}