Access 87,000+ verified Islamic sources via a simple REST API. Build intelligent Islamic applications powered by authentic scholarship.
One endpoint. Any language. Instant answers.
const response = await fetch('https://muslimai.uk/api/v1/ask', {
method: 'POST',
headers: {
'Authorization': 'Bearer mai_live_your_key_here',
'Content-Type': 'application/json'
},
body: JSON.stringify({
question: 'What are the five pillars of Islam?'
})
});
const data = await response.json();
console.log(data.answer);import requests
response = requests.post(
'https://muslimai.uk/api/v1/ask',
headers={
'Authorization': 'Bearer mai_live_your_key_here',
'Content-Type': 'application/json'
},
json={
'question': 'What are the five pillars of Islam?'
}
)
data = response.json()
print(data['answer'])curl -X POST https://muslimai.uk/api/v1/ask \
-H "Authorization: Bearer mai_live_your_key_here" \
-H "Content-Type: application/json" \
-d '{"question": "What are the five pillars of Islam?"}'{
"answer": "The five pillars of Islam are the foundational acts of worship...",
"sources": [
{ "title": "Sahih al-Bukhari 8", "score": 0.95 },
{ "title": "Sahih Muslim 16", "score": 0.91 }
],
"usage": {
"tokensIn": 1250,
"tokensOut": 180,
"latencyMs": 1340,
"dailyRemaining": 9,
"monthlyRemaining": 299
}
}Everything you need to build Islamic knowledge applications.
Access 87,000+ verified Islamic texts including Quran, Hadith, Tafsir, and scholarly works.
Retrieval-Augmented Generation ensures answers are grounded in authentic Islamic scholarship.
Average response time under 2 seconds powered by Groq inference infrastructure.
Every response includes source citations so you can verify and reference the original texts.
Single endpoint, Bearer token auth. Integrate in minutes with any language or framework.
Built-in rate limiting with clear headers. Know your usage and remaining quota at all times.
Start free. Scale as you grow.
Create your free API key and start building with Islamic knowledge in under a minute.
Create Free API Key