Files
bifrost/docs/openapi/paths/integrations/anthropic/models.yaml
Beyhan Oğur 880f412e2c first commit
2026-04-26 21:52:23 +03:00

51 lines
1.3 KiB
YAML

# Anthropic Integration - Models Endpoints
models:
get:
operationId: anthropicListModels
summary: List models (Anthropic format)
description: |
Lists available models in Anthropic format.
tags:
- Anthropic Integration
parameters:
- name: limit
in: query
schema:
type: integer
description: Maximum number of models to return
- name: before_id
in: query
schema:
type: string
description: Return models before this ID
- name: after_id
in: query
schema:
type: string
description: Return models after this ID
responses:
'200':
description: Successful response
content:
application/json:
schema:
$ref: '../../../schemas/integrations/anthropic/common.yaml#/AnthropicListModelsResponse'
'400':
description: Bad request
content:
application/json:
schema:
$ref: '../../../schemas/integrations/anthropic/common.yaml#/AnthropicError'
'500':
description: Internal server error
content:
application/json:
schema:
$ref: '../../../schemas/integrations/anthropic/common.yaml#/AnthropicError'
security:
- BearerAuth: []
- BasicAuth: []
- VirtualKeyAuth: []
- ApiKeyAuth: []