NeuralSnapNeuralSnap/Docs

Profile & Usage

Check your account details, current plan, usage statistics, and remaining limits. Use this endpoint to monitor token consumption and avoid hitting quotas unexpectedly.

Get Profile

GET/api/v1/profile

Retrieve your account profile, plan details, and current usage statistics.

bash
curl https://neuralsnap.ai/api/v1/profile \
-H "Authorization: Bearer ns_test_abc123"
json
{
"data": {
"id": "user_abc123def456",
"email": "you@example.com",
"plan": "pro",
"snapshot_count": 247,
"search_count": 1520,
"limits": {
"snapshots": 500,
"searches": null,
"api_rate": 100
}
}
}

Token Limits by Plan

Token limits reset at the start of each billing cycle. Both input and output tokens from crystallization count toward your monthly quota.

Monthly Token Quotas

PropertyTypeDescription
Starterplan500,000 tokens/month · 1,000 searches/month · No API access
Proplan2,000,000 tokens/month · 10,000 searches/month · 100 req/min
Businessplan10,000,000 tokens/month · 40,000 searches/month · 500 req/min

When your token quota is exhausted, crystallization requests will return 429 until the next billing cycle. CRUD and search operations are not affected by token limits — only by rate limits. Usage includes all crystallization phases and embedding generation.