1
Get your API key
Sign up for a free account to get your API key. All requests need this key in the header.
Already have an account? Sign in
2
Make your first request
Copy this code and run it. Replace YOUR_API_KEY with the key from your dashboard.
JavaScript fetch example
fetch("https://ready-api.vercel.app/api/users?page=1&limit=3", {
headers: { Authorization: "Bearer YOUR_API_KEY" }
})
.then(res => res.json())
.then(data => console.log(data))3
Try different endpoints
Ready API has many endpoints. Try users, products, Quran, and more.
Available endpoints
# Get products
GET https://ready-api.vercel.app/api/products
# Get Quran surahs
GET https://ready-api.vercel.app/api/quran
# Get prayer times
GET https://ready-api.vercel.app/api/prayer-times?lat=21.42&lng=39.82
# All requests need:
# Authorization: Bearer YOUR_API_KEY