API Documentation

Integrate JevKit judgments into your applications

Base URL

https://jevcheck.tech/api/v1

Authentication

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.

POST /ai/judge

Process text and fields to get judgments with confidence scores.

Request Body

{
  "text": "John Doe\nEmail: john@example.com\nPhone: 555-1234",
  "fields": ["Full Name", "Email", "Phone"]
}

Response

{
  "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
    }
  ]
}
GET /subscriptions/plans

List available subscription plans.

Response

{
  "plans": [
    {
      "id": "free",
      "name": "Free",
      "price_monthly": 0,
      "api_call_limit": 100
    },
    {
      "id": "pro",
      "name": "Pro",
      "price_monthly": 9,
      "api_call_limit": 10000
    }
  ]
}
GET /usage/summary

Get current usage statistics for your account.

Response

{
  "api_calls": {
    "used": 45,
    "limit": 100,
    "reset_at": "2026-10-01T00:00:00Z"
  }
}

Error Codes

401 Unauthorized
Invalid or missing API key
429 Too Many Requests
Rate limit exceeded
500 Internal Server Error
Something went wrong on our end
503 Service Unavailable
Jev API temporarily unavailable

Quick Start Example

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']})")