기타
기타 임베드

text-embedding-3-small

모델 ID: text-embedding-3-small
계열
기타
컨텍스트
아직 업데이트되지 않음
최소 요금 / 요청
0.352 ₩
요청 수
20.7K
성공
98.5%
토큰
13.53M
업타임 100.00%
24시간 전지금
7일 전지금

가격표

입력 / 1M 토큰
65.882 ₩
출력 / 1M 토큰
0 ₩
최소 요금 / 요청
0.352 ₩
가격 변경 기록

적용되었던 가격 수준입니다. "현재"로 표시된 행이 적용 중인 가격입니다.

현재 시작일 05/04/2026 - 19:56:28
입력 / 1M 토큰65.882 ₩ 출력 / 1M 토큰0 ₩ 최소 요금 / 요청0.352 ₩
비용 예상
예상 합계 0 ₩
요청당 평균 0 ₩

공표된 가격 기준의 예상치입니다. 캐시가 있으면 대개 더 저렴합니다.

지원 엔드포인트
https://api.xah.io/v1/embeddings
메서드 POST · application/json
인증 Bearer 토큰(API 키)
검증된 부하 🟢 Enterprise peak 65/s · sustained 43.2/s
지연 시간 p95 2,000 ms
API 유형 임베드

공유

curl 'https://api.xah.io/v1/embeddings' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "model": "text-embedding-3-small",
    "input": "The quick brown fox jumps over the lazy dog"
}'
// Node.js / Browser
const res = await fetch('https://api.xah.io/v1/embeddings', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    "model": "text-embedding-3-small",
    "input": "The quick brown fox jumps over the lazy dog"
})
});
const data = await res.json();
console.log(data);
import requests

url = 'https://api.xah.io/v1/embeddings'
headers = {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json',
}
payload = {
    "model": "text-embedding-3-small",
    "input": "The quick brown fox jumps over the lazy dog"
}

res = requests.post(url, headers=headers, json=payload, timeout=120)
print(res.status_code, res.json())
{
    "model": "text-embedding-3-small",
    "input": "The quick brown fox jumps over the lazy dog"
}
빠른 시도

이 모델은 텍스트 채팅을 지원하지 않아 빠른 시도를 할 수 없습니다.

리뷰 및 댓글
0.0 / 0 리뷰
리뷰를 불러오는 중...
고객 지원 문의
언제든지 도와드릴 준비가 되어 있습니다