GET
/
providers
curl --request GET \
  --url https://api.bolna.dev/providers \
  --header 'Authorization: Bearer <token>'
[
  {
    "provider_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "provider_name": "OPENAI_API_KEY",
    "provider_value": "xxxxxxxaz",
    "humanized_created_at": "7 hours ago",
    "created_at": "2024-01-29T12:44:12Z"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
providers status response
provider_id
string

Unique provider identifier

provider_name
string

Name of the provider

Example:

"OPENAI_API_KEY"

provider_value
string

Masked secret value/key associated with the provider

Example:

"xxxxxxxaz"

humanized_created_at
string

Human readable relative timestamp of provider addition

Example:

"7 hours ago"

created_at
string

Timestamp of provider addition

Example:

"2024-01-29T12:44:12Z"