API & Developer Portal
Power your international admissions with the GradeAtlas conversion API. Reliable, standardized, and verified grading logic for every country.
Self-Service Keys Coming Soon
We are currently in private beta. Direct API access will be available shortly.
Integration Guidelines
Standardized Mapping
All API responses use ISO country codes and normalized 0-100 scales to ensure consistency across different source systems.
Rate Limiting
Standard tier permits up to 1,000 requests per month. Enterprise tiers offer unlimited scaling for high-volume admissions periods.
Data Freshness
Our grading database is audited monthly. All API requests include a 'last_verified' timestamp for transparency.
Example Request
GET /v1/convert
{
"source": "india_10_point",
"target": "us_4_0",
"grade": 8.5,
"credits": 4
}
// Response
{
"status": "success",
"data": {
"normalized_gpa": 3.67,
"letter_grade": "A-",
"methodology": "UGC_Standard_2026",
"confidence": 0.98
}
}Security Standards
- AES-256 Encryption
- Bearer Token Auth
Embeddable Calculator Widget
Add a GPA calculator to your site in seconds — no API key required.
You can embed the GradeAtlas calculator directly in your website or LMS using a simple iframe. The widget is mobile-friendly, accessible, and pre-filtered by country code.
Basic Embed
<iframe src="https://gradeatlas.org/embed/calculator" width="100%" height="700" frameborder="0" title="GradeAtlas GPA Calculator" allow="clipboard-write" ></iframe>
Pre-filtered by Country
Use the country parameter (ISO 3166-1 alpha-2 code) to pre-select the grading system for your audience.
<!-- India --> <iframe src="https://gradeatlas.org/embed/calculator?country=IN" width="100%" height="700" frameborder="0" title="Indian GPA Calculator" allow="clipboard-write" ></iframe> <!-- Saudi Arabia --> <iframe src="https://gradeatlas.org/embed/calculator?country=SA" width="100%" height="700" frameborder="0" title="Saudi Arabia GPA Calculator" allow="clipboard-write" ></iframe>