Skip to main content
GET
/
schemas
스키마 목록 조회
curl --request GET \
  --url https://client-api.tryvox.co/v3/schemas \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "namespace": "<string>",
      "schema_type": "<string>",
      "version": "<string>",
      "name": "<string>",
      "source": "db",
      "is_active": true,
      "category": "<string>",
      "description": "<string>",
      "schema": {},
      "created_at": 123,
      "updated_at": 123
    }
  ],
  "total_count": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt

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

Authorizations

Authorization
string
header
required

조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.

Query Parameters

namespace
string | null

스키마 namespace입니다. 주로 agent-schema, flow-schema, tool-schema를 사용합니다.

category
string | null

선택적 category 필터입니다. 주로 agent-authoring, built_in을 사용합니다.

include_schema
boolean
default:false

JSON Schema 본문을 응답에 포함할지 여부입니다. 기본값은 메타데이터만 반환합니다.

Response

성공 응답

public schema registry 목록 응답입니다.

items
SchemaDefinition · object[]
required

페이지 항목입니다.

total_count
integer
required

조건에 맞는 전체 항목 수입니다.