Documentation Index
Fetch the complete documentation index at: https://docs.llmgenerator.com/llms.txt
Use this file to discover all available pages before exploring further.
GET /credits/packages
購入可能なすべてのクレジットパッケージを返します。公開エンドポイントで認証は不要です。
レスポンス
クレジットパッケージオブジェクトの配列。
セント単位の価格(例: 999 は $9.99)。
curl -X GET https://api.llmgenerator.com/api/v1/credits/packages
{
"packages": [
{
"id": "pkg_starter",
"name": "Starter Pack",
"credits": 100,
"priceCents": 499,
"packageId": "starter"
},
{
"id": "pkg_pro",
"name": "Pro Pack",
"credits": 500,
"priceCents": 1999,
"packageId": "pro"
},
{
"id": "pkg_enterprise",
"name": "Enterprise Pack",
"credits": 2000,
"priceCents": 4999,
"packageId": "enterprise"
}
]
}