LL Exam Status API

Status can be PENDING, COMPLETED or REJECTED. Completed requests include an attachment_url; rejected requests include refund details.

v1
GET https://versatile-lavender-rat.163-61-39-39.cpanel.site/api/v1/ll-exam-status

Authentication

API key + API secret headers, or a Bearer JWT. Obtain the JWT from POST /api/v1/auth/token using your key and secret; tokens are valid for 3600 seconds.

SchemeLocationValue
JWT bearerHeaderAuthorization: Bearer <token>
API keyHeaderX-API-Key: pk_xxxxxxxx
API secretHeaderX-API-Secret: sk_xxxxxxxx

Headers

HeaderRequiredDescription
AuthorizationOptionalBearer JWT issued by the token endpoint.
X-API-KeyYesYour API key (pk_…).
X-API-SecretYesYour API secret (sk_…), shown once at creation.
Content-TypeYesapplication/json
X-Request-IdNoYour idempotency key; echoed back in the response.

Parameters & validation rules

NameTypeRequiredValidationDescription
api_key string No Your API key (sent automatically by the portal).
order_id string Yes Order ID received from the LL Exam API.

Example request

curl -X GET \
  "https://www.apicentre.in/api/ll_exam_status?api_key=YOUR_API_KEY&order_id=ORDER_ID" \
  -H "Accept: application/json"
<?php
$ch = curl_init("https://www.apicentre.in/api/ll_exam_status?api_key=YOUR_API_KEY&order_id=ORDER_ID");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = json_decode(curl_exec($ch), true);
curl_close($ch);
print_r($data);
const res  = await fetch("https://www.apicentre.in/api/ll_exam_status?api_key=YOUR_API_KEY&order_id=ORDER_ID");
const data = await res.json();
console.log(data);
import requests

res = requests.get("https://www.apicentre.in/api/ll_exam_status?api_key=YOUR_API_KEY&order_id=ORDER_ID")
print(res.json())

Responses

Success 200
{
    "order_id": "LLEXAM_FFFA9F23776BFB3F",
    "status": "COMPLETED",
    "application_no": "appno002",
    "attachment_url": "https://server195154.ddns.net/uploads/llexam_2_1784428257_a18451f1.png"
}
Error 4xx
{
    "order_id": "LLEXAM_1327E8C1D5245CD2",
    "status": "REJECTED",
    "application_no": "appno004",
    "remark": "Password Wrong",
    "is_refunded": "1",
    "refund_txn_id": "LLEXAM_1327E8C1D5245CD2_REFUND",
    "refund_date": "2026-07-19"
}

HTTP status codes

CodeMeaning
200Success - verification completed and wallet debited.
400Validation failed - check the parameter rules below.
401Missing or invalid JWT / API key.
402Insufficient wallet balance.
403API not purchased or key not permitted for this endpoint.
404Record not found at the source registry.
422Upstream provider returned an unprocessable response.
429Rate limit exceeded - retry after the window resets.
500Unexpected server error - safe to retry with the same request_id.
503Upstream registry temporarily unavailable.

Rate limit & billing

Rate limit
60 req/min per key
Charge
₹0.00 per successful call
Failed calls
Not charged (4xx/5xx)

When throttled, the API returns 429 with X-RateLimit-Limit, X-RateLimit-Remaining and Retry-After headers.