Skip to main content
GET
/
api
/
oauth
/
config
/
{id}
/
status
Error
A valid request URL is required to generate request examples
{
  "id": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "expires_at": "2023-11-07T05:31:56Z",
  "token_id": "<string>",
  "token_expires_at": "2023-11-07T05:31:56Z",
  "token_scopes": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.getbifrost.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication. Use your provider API key or Bifrost authentication token. Virtual keys (prefixed with sk-bf-) can also be passed here.

Path Parameters

id
string
required

OAuth config ID

Response

OAuth config status retrieved successfully

Status of an OAuth configuration

id
string

OAuth config ID

status
enum<string>

Current status of the OAuth flow:

  • pending: User has not yet authorized
  • authorized: User authorized and token is stored
  • failed: Authorization failed
Available options:
pending,
authorized,
failed
created_at
string<date-time>

When this OAuth config was created

expires_at
string<date-time>

When this OAuth config expires (becomes invalid if not completed)

token_id
string

ID of the associated OAuth token (only present if status is authorized)

token_expires_at
string<date-time>

When the OAuth access token expires (only present if status is authorized)

token_scopes
string[]

Scopes granted in the OAuth token (only present if status is authorized)