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

# Quick Start

<Note>The Mobbin REST API is available on Team and Enterprise plans only.</Note>

## Get your API key

1. Go to [Settings > API Keys](https://mobbin.com/settings/team/api-keys) in your Mobbin workspace.
2. Click **Create API Key** and copy the key.

Your API key is scoped to your workspace. Keep it secret and do not commit it to source control.

## Base URL

```
https://api.mobbin.com
```

## Authorization

Include your API key in the `Authorization` header as a Bearer token:

```
Authorization: Bearer YOUR_API_KEY
```

## Make your first request

Search for screens using natural language:

```bash theme={null}
curl -X POST https://api.mobbin.com/v1/screens/search \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "login screen with biometric authentication",
    "platform": "ios",
    "limit": 5
  }'
```

The response includes matching screens with image URLs, app names, and links back to Mobbin. See the
[API Reference](/api-reference/screens/search-screens-with-natural-language) for full details on
parameters and response fields.
