Skip to main content
GET
/
api
/
products
/
products
cURL
curl --request GET \
  --url https://api.bedrock.orinlabs.org/api/products/products/ \
  --header 'Authorization: <api-key>'
[
  {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "has_openai_api_key": true,
    "has_anthropic_api_key": true,
    "openai_api_key_preview": "<string>",
    "anthropic_api_key_preview": "<string>",
    "system_prompt": "<string>",
    "default_model": "<string>",
    "tool_call_secret": "<string>",
    "adapters": [
      "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    ]
  }
]

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Response

200 - application/json
id
string<uuid>
required
name
string
required
Maximum string length: 255
created_at
string<date-time>
required
has_openai_api_key
boolean
required
has_anthropic_api_key
boolean
required
openai_api_key_preview
string | null
required

Return masked version of OpenAI API key.

anthropic_api_key_preview
string | null
required

Return masked version of Anthropic API key.

system_prompt
string
default_model
string
Maximum string length: 255
tool_call_secret
string
Maximum string length: 255
adapters
string<uuid>[]