Public API
A read-only JSON API for the entire CreditVault directory. Free to use, no auth required.
/api/v1/companiesList every company in the vault.
[{ "brand": "AWS", "slug": "aws-activate", "audience": "startup" }]/api/v1/programsAll programs with credit values.
[{ "brand": "AWS", "value": "$100K credits", "audience": "startup" }]/api/v1/creditsCredit-bearing offers only.
[{ "brand": "OpenAI", "value": "$1K credits" }]/api/v1/studentStudent-only offers.
[{ "brand": "GitHub Student Pack", "value": "Free" }]/api/v1/startupStartup-only programs.
[{ "brand": "Google for Startups", "value": "$200K" }]/api/v1/cloudCloud credit programs.
[{ "brand": "Cloudflare for Startups", "value": "$250K" }]/api/v1/aiAI & ML credit programs.
[{ "brand": "Anthropic Startups", "value": "$25K" }]/api/v1/categoriesCategory taxonomy + counts.
[{ "name": "Cloud", "count": 42 }]/api/v1/search?q=…Free-text search across brand, tags and description.
{ "results": [{ "brand": "Supabase" }] }/api/v1/compare?slugs=a,b,cCompare two or more programs side-by-side.
{ "programs": [/* … */] }Quick start
curl https://vault001.lovable.app/api/v1/programs
Rate-limited to 60 req/min per IP. Cached for 60s at the edge.
Sample response
{
"brand": ".TECH",
"slug": "so-tech",
"audience": "student",
"category": "Cloud",
"value": "Free .TECH domain for 1 year",
"claim_url": "https://get.tech/github-student-developer-pack"
}Suggest a new endpoint →