v1.0.0 Live
Evaluate Candidates
Programmatically.
A powerful REST API for text extraction, unstructured data parsing, and AI-driven skill evaluation. Integrate Scoremi directly into your ATS or custom career portal in minutes.
Secure Authentication
Bank-grade API keys generated directly from your Enterprise dashboard.
Sub-second Extraction
Send raw PDFs. Get structured JSON back instantly.
Webhooks Available
Listen for asynchronous batch processing events.
POST /v1/evaluate
// 1. Send the resume via Java OkHttp
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url("https://api.scoremi.com/v1/evaluate")
.header("Authorization", "Bearer YOUR_API_KEY")
.post(requestBody)
.build();
// 2. Receive Structured Intelligence
{
"status": "success",
"candidate_name": "Alex Chen",
"extracted_score": 84,
"key_skills": ["React", "Node.js", "PostgreSQL"]
}