QiraAI APIs
Access the power of QiraAI via API. Automate your AI tasks, integrations, and application development using our AI-driven APIs. Manage your AI assets, access responses, and build automated solutions seamlessly with your favorite development environment.
Base API URL:
All APIs are accessed via the base URL:
https://api.qiraai.com/v1/
Use this base URL with the API endpoints detailed below.
List of API Endpoints
API Endpoint | Description | Method |
---|---|---|
/GenAI ▼ | Send a message to our General AI (ChatGPT-style) and get responses. | POST |
Example Request:
{
"input": "What can AI do?",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"response": "AI can automate tasks, recognize patterns, and much more."
}
|
||
/Translator ► | Translate text between two languages. Default: English → Arabic. | POST |
Example Request:
{
"text": "Hello, how are you?",
"source_lang": "en",
"target_lang": "ar",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"translated_text": "مرحبًا، كيف حالك؟"
}
|
||
/TalkToPDF ► | Upload a PDF and interact with its content. | POST |
Example Request:
{
"document_url": "https://example.com/doc.pdf",
"question": "What is the main takeaway from section 3?",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"response": "Section 3 talks about data privacy regulations."
}
|
||
/Summarizer ► | Summarize long texts into concise summaries. | POST |
Example Request:
{
"input": "This is a very long text...",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"summary": "A concise version of the long text."
}
|
||
/ImageGenerator ► | Generate images from descriptive text input. | POST |
Example Request:
{
"input": "A futuristic city at sunset",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"data": {
"image_url": "https://api.qiraai.com/generated_images/futuristic-city.png"
}
}
|
||
/ImageAnalizer ► | Analyze an image and return descriptive tags. | POST |
Example Request:
{
"image_url": "https://example.com/image.png",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"tags": ["City", "Futuristic", "Sunset", "Skyline"]
}
|
||
/VideoGenerator ► | Generate videos according to provided details. | POST |
Example Request:
{
"description": "Create a promotional video for the new product.",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"video_url": "https://api.qiraai.com/generated_videos/product-video.mp4"
}
|
||
/SocialVideo ► | Generate vertical social videos based on input descriptions. | POST |
Example Request:
{
"description": "Create a social media post about Arabic poetry.",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"video_url": "https://api.qiraai.com/generated_videos/arabic_poetry_video.mp4"
}
|
||
/TextToSpeech ► | Convert text into speech audio with select voice options. | POST |
Example Request:
{
"text": "Hello, welcome to QiraAI.",
"gender": "female",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"audio_url": "https://api.qiraai.com/generated_audio/welcome.mp3"
}
|
||
/xAccountAnalyzer ► | Analyze X.com (formerly Twitter) accounts by handle. | POST |
Example Request:
{
"handle": "@yourhandle",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"engagement": {
"likes_per_post": 120,
"retweets_per_post": 50,
"average_sentiment": "positive"
}
}
|
||
/csvAnalysis ► | Upload a CSV for data analysis and generate reports. | POST |
Example Request:
{
"document_url": "https://example.com/sales_data.csv",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"top_selling_item": "Wireless Headphones",
"sales_per_day": {
"2023-10-01": 50,
"2023-10-02": 45
}
}
|
||
/npsAnalysis ► | Upload customer feedback CSV for NPS analysis. | POST |
Example Request:
{
"document_url": "https://example.com/nps_feedback.csv",
"api_key": "YourAPIKey"
}
Example Response:
{
"status": "success",
"nps": 45,
"most_happy_demographic": "Ages 25-34",
"nps_per_product": {
"Product A": 30,
"Product B": 55
}
}
|
Get Your API License Key
Follow these steps to get your API license key and start integrating QiraAI's powerful tools:
- Sign up for a QiraAI account by clicking on Join.
- Browse our available plans and choose the one that fits your needs.
- Pay securely via our payment gateway and receive your license key instantly.
- Integrate the license key into your API requests as shown in the examples above.
Need more help? Contact our Support.