Documentation · Endpoints
POST /api/v1/score
Score MiCA indicatif 0–100 avec grade, breakdown 5 dimensions, gaps et recommandations.
Requête
Texte libre et/ou champs structurés. Au moins `description` ou `asset_type`/`issuer_type` requis.
{
"description": "Entrepôt retail Luxembourg €2.5M SPV investisseurs professionnels",
"asset_type": "real_estate",
"issuer_type": "company_spv",
"whitepaper": "draft",
"has_kyc": true
}Réponse (extrait)
Chaque réponse inclut `disclaimer` et `meta.full_report_url` vers le wizard AUROS.
{
"score_id": "scr_a1b2c3d4e5f6789012345678",
"history_url": "https://getauros.com/api/v1/score/scr_a1b2c3d4e5f6789012345678/history",
"score": 72,
"grade": "B-",
"status": "progress",
"mica_classification": "financial_instrument",
"breakdown": {
"legal_structure": 78,
"kyc_aml": 65,
"mica_compliance": 70,
"data_room": 55,
"investor_protection": 80
},
"critical_gaps": ["Compléter le whitepaper avant distribution retail"],
"recommendations": ["..."],
"recommended_jurisdictions": [{ "id": "luxembourg", "score": 88 }],
"meta": { "version": "1.0", "computed_at": "...", "full_report_url": "https://getauros.com/wizard" }
}cURL
curl -X POST https://getauros.com/api/v1/score \
-H "Authorization: Bearer auros_pk_test_demo" \
-H "Content-Type: application/json" \
-d '{"description":"Entrepôt retail Luxembourg €2.5M SPV professionnels"}'