テキスト読み上げ
音声クローン
リップシンク
その他
テキスト読み上げ
音声クローン
リップシンク
その他
プロフィール
ユーザープロフィール API をテストします。
ユーザープロフィール API
エンドポイント
GET /api/open/profile
Also supports POST requests, parameters can be passed via request body or Authorization header
リクエストヘッダー
サンプルヘッダー
Request Parameters (POST Method)
{
"token": "YOUR_API_TOKEN" // Optional if not provided in header
}レスポンス
サンプルレスポンス
Response Field Description
user_id: User ID
api_quota_remaining: Remaining API credits
tier: User tier (free/pro/enterprise)
credits: Normal credits balance
CURL 例
# GET request
curl -X GET https://kittaai.com/api/open/profile \
-H "Authorization: Bearer YOUR_API_TOKEN"
# POST request (via header)
curl -X POST https://kittaai.com/api/open/profile \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-d '{}'
# POST request (via body)
curl -X POST https://kittaai.com/api/open/profile \
-H "Content-Type: application/json" \
-d '{
"token": "YOUR_API_TOKEN"
}'オンラインデバッグ
ステータスコード
200: 成功 400: 不正なリクエスト 401: 未認証 403: アクセス拒否 404: 見つかりません 429: リクエスト過多 500: サーバーエラー