Integrate JevKit judgments into your applications
https://jevcheck.tech/api/v1
All API requests require a Bearer token in the Authorization header:
Authorization: Bearer <your_api_key>
You can get your API key from the Dashboard.
/ai/judge
Process text and fields to get judgments with confidence scores.
{
"text": "John Doe\nEmail: john@example.com\nPhone: 555-1234",
"fields": ["Full Name", "Email", "Phone"]
}
{
"results": [
{
"field": "Full Name",
"value": "John Doe",
"confidence": 0.95
},
{
"field": "Email",
"value": "john@example.com",
"confidence": 0.98
},
{
"field": "Phone",
"value": "555-1234",
"confidence": 0.92
}
]
}
/subscriptions/plans
List available subscription plans.
{
"plans": [
{
"id": "free",
"name": "Free",
"price_monthly": 0,
"api_call_limit": 100
},
{
"id": "pro",
"name": "Pro",
"price_monthly": 9,
"api_call_limit": 10000
}
]
}
/usage/summary
Get current usage statistics for your account.
{
"api_calls": {
"used": 45,
"limit": 100,
"reset_at": "2026-10-01T00:00:00Z"
}
}
import requests
API_KEY = "your_api_key_here"
BASE_URL = "https://jevcheck.tech/api/v1"
headers = {
"Authorization": f"Bearer {API_KEY}",
"Content-Type": "application/json"
}
# Judge fields from resume
response = requests.post(
f"{BASE_URL}/ai/judge",
headers=headers,
json={
"text": "John Doe\nEmail: john@example.com",
"fields": ["Full Name", "Email"]
}
)
results = response.json()["results"]
for r in results:
print(f"{r['field']}: {r['value']} (confidence: {r['confidence']})")