메인 콘텐츠로 건너뛰기

Documentation Index

Fetch the complete documentation index at: https://docs.aihubmix.com/llms.txt

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

Beta API이 API는 현재 테스트 단계(Beta)이며 향후 큰 업데이트가 있을 수 있습니다. 프로덕션 환경에서 사용할 때는 주의하세요.
AIHubMix의 Responses API (Beta)는 GPT, Claude, GLM, Gemini 등 OpenAI Responses API와 호환되는 여러 모델에 액세스할 수 있는 통합 인터페이스를 제공합니다. 이 인터페이스는 다음과 같은 향상된 기능도 제공합니다:
  • Reasoning (추론)
  • Tool Calling (도구 호출)

기본 URL

https://aihubmix.com/v1/responses

인증

모든 요청은 AIHubMix API Key를 통한 인증이 필요합니다.
import requests

url = "https://aihubmix.com/v1/responses"

headers = {
    "Authorization": "Bearer YOUR_AIHUBMIX_API_KEY",
    "Content-Type": "application/json"
}

data = {
    "model": "claude-sonnet-4-6",
    "input": "Hello, world!"
}

response = requests.post(url, headers=headers, json=data)

print(response.status_code)
print(response.json())

마지막 업데이트: 2026-06-01