> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mibyanai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Platform quickstart

> Create a project key and send your first API request

<Steps>
  <Step title="Open Platform">Sign in at [platform.mibyanai.com](https://platform.mibyanai.com) with your existing Mibyan account.</Step>
  <Step title="Select a project">Use the default personal project or create a separate project for the application.</Step>
  <Step title="Create a key">Choose a test or live environment, permissions, model restrictions, and optional expiry.</Step>
  <Step title="Copy it once">Store the one-time value in a server-side secret manager.</Step>
  <Step title="Send a request">Use the `mibyan-4.1` model and inspect the resulting Request ID in Logs.</Step>
</Steps>

```bash theme={null}
curl https://api.mibyanai.com/v1/chat/completions \
  -H "Authorization: Bearer $MIBYAN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"mibyan-4.1","messages":[{"role":"user","content":"Hello"}]}'
```
