Skip to main content

Getting Started

To get started with MKA1, contact us at hello@MeetKai.com to request an API key and access to the TypeScript SDK.

Making Your First Request

Once you have your API key, making your first request is simple:
curl https://apigw.mka1.com/api/v1/llm/responses \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "model": "meetkai:functionary-urdu-mini-pak",
  "input": "What is the capital of France?",
  "stream": false
}'
Or try it directly in the Playground: Try it

Start building

The API Reference contains the full documentation for supported requests, as well as examples for how to use the TypeScript SDK. Start with the authentication guide to learn when to send Authorization and X-On-Behalf-Of. We also have guides on how to Generate text, Extract structured data, Search with tables and text stores, and more.