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
Renvoie la liste des packs de crédits achetables. Point de terminaison public, sans authentification.
Réponse
Tableau d’objets représentant les packs.Afficher Propriétés d'un pack
Identifiant unique du pack.
Nombre de crédits inclus dans le pack.
Prix en centimes (ex. : 999 = 9,99 $).
Identifiant interne utilisé pour le paiement (checkout).
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"
}
]
}