Welcome to APIBro! Below are quick snippets you can use to start fetching data right away. Make sure to use your active API Key from the API Keys tab.
Make sure you API Keys should not visible on client side.
Authentication to the API is performed via an API key. Provide your API key using the x-api-key header on every request.
curl -X POST "https://api.apibro.site/api/v1/aktu-latest-notifications" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY"POST /api/v1/aktu-latest-notifications - Fetch the latest AKTU notifications.POST /api/v1/aktu-results - Fetch AKTU results by roll number.POST /api/v1/aktu-circulars - Fetch the latest AKTU circulars.POST /api/v1/colleges - List affiliated colleges.Send parameters as a JSON object in the request body. For example, fetching a result by roll number:
{
"rollNumber": "1234567890"
}Every response is returned as JSON with the corresponding HTTP status code. You can test any endpoint interactively, including live request/response previews, from the Playground tab.