Anakin.ai API
  1. QuickApp
Anakin.ai API
  • Getting started
  • API Versions
  • Apps
    • Chatbot
      • Conversation with Chatbot
    • QuickApp
      • Run a Quick App
        POST
  • Meta
    • Get all API versions
      GET
  1. QuickApp

Run a Quick App

POST
/v1/quickapps/{appId}/runs
Transmit inputs to a QuickApp's pre-prompting instructions which used to generate an AI output. And the output is determined by the pre-prompting instructions.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.anakin.ai/v1/quickapps/1476/runs' \
--header 'X-Anakin-Api-Version;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "inputs": {
        "Topic": "About Artificial Intelligence",
        "Details": "Driving Customer Engagement"
    },
    "stream": true
}'
Response Response Example
200 - Non-streaming response - Success
{
    "content": "Anakin.ai is a one-stop AI app platform that offers the ability to generate content, images, videos, and voice, as well as craft automated workflows, custom AI apps, and intelligent agents.",
    "threadId": "NRwJqQ6yBE4vG9c4UwILV6N1VVsZppjA"
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Header Params

Body Params application/json

Examples

Responses

🟢200Non-streaming response
application/json
Body

🟢200Streaming response
Modified at 2024-07-26 03:44:39
Previous
Conversation with Chatbot
Next
Get all API versions
Built with