Evaldam Model API
Create an account, generate an API key in Settings, add API credits, and call the Evaldam model from your product or workflow.
API Keys
Generate and revoke keys from Settings after creating an account.
Prepaid Credits
API usage is pay-as-you-go and separate from dashboard subscription plans.
Rate Limited
60 requests per minute per API key to prevent abuse.
Bulk Valuations
Enterprise-only CSV batch workflows are available through authenticated API endpoints.
Enterprise bulk valuation workflows
Bulk valuation routes are intentionally API-first and gated to Enterprise accounts. Use them for CSV batch uploads and job status tracking after your workspace is enabled.
POST /api/bulk-valuations/uploadGET /api/bulk-valuations/[jobId]Pricing
API usage is billed from a separate prepaid USD wallet. Minimum top-up is $5.
Request
curl -X POST https://equidamai.com/api/v1/model/chat \
-H "Authorization: Bearer evd_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"model": "evaldam-model",
"messages": [
{ "role": "user", "content": "Explain valuation drivers for a seed SaaS startup." }
],
"max_tokens": 800
}'Response
{
"id": "request_id",
"model": "evaldam-model",
"content": "Model response...",
"usage": {
"cost": "$0.01",
"tokens": {
"input": 18,
"output": 240
},
"balance_before": "$25.00",
"balance_after": "$24.99"
}
}API credits expire six months after purchase. Keep API keys server-side and revoke exposed keys from Settings.