Bangladesh Education Board Results

Simple result lookup API deployed on Vercel.

Fast JSON responses for SSC and HSC queries through a single /fetch endpoint.

Runtime Rust + Axum
Method GET / POST
Endpoint /fetch

Endpoint

POST /fetch or GET /fetch with query params

exam

Exam code: ssc or hsc

year

Exam year. Example: 2024

board

Board code. Example: dinajpur

roll

Student roll number

reg

Registration number. Returned from the board page when available, otherwise echoed from the request.

cURL
curl -sS -X POST "https://eduboardapi.vercel.app/fetch" \
  -H "Content-Type: application/json" \
  -d '{
    "exam": "ssc",
    "year": "2024",
    "board": "dinajpur",
    "roll": "277795",
    "reg": "2117829469"
  }'

Live Playground

Sends a request to /fetch on this same deployment.

Response Waiting for request...
{
  "tip": "Submit the form to test the API"
}