KrosAI Docs
DashboardGet Started
  • Getting Started
    • Introduction
    • Quickstart Guide
    • Authentication
  • OpenAI SDK Compatability
  • Endpoints
    • Completions API
      • Create Chat Completion
    • Translation API
    • Text Summarization API
    • Audio Transcription API
    • Sentiment Analysis API
  • AGENT
    • Agents API
      • Create Agent
      • List Agents
      • Get Agent
      • Update Agent
      • Delete Agent
      • Start Voice Session
    • Conversations API
      • Create Conversation
      • List Conversations
      • Get Conversation
      • Get Conversation Messages
    • Knowledge Base API
      • Create Knowledge Base
      • List Knowledge Base
      • Upload Document
      • List Document
  • Resources
    • AI Voice Agents
    • In-App Voice Assistants
    • Virtual Health Assistants
    • EdTech Language Tutors
  • SDKS
    • Node.JS SDK
    • React Native SDK
    • Flutter
Powered by GitBook
On this page
  • Step 1: Get Your API Key
  • Step 2: Make Your First API Call
  1. Getting Started

Quickstart Guide

Follow these steps to start using KrosAI’s API for English-Yoruba translations and conversations.

PreviousIntroductionNextAuthentication

Last updated 4 months ago

Step 1: Get Your API Key

  1. Create an account at

  2. Navigate to the API Keys section

  3. Generate a new API key

  4. Copy and securely store your API key

Step 2: Make Your First API Call

Here’s a simple example using cURL to translate text from English to Yoruba:

curl https://api.krosai.com/v1/completions \
  -H 'accept: application/json' \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "prompt": "Translate to Yoruba: Hello, how are you?",
    "model": "KrosMLingual1.0.1"
  }'
KrosAI Platform