API Quick Start

The Mobbin REST API is available on Team and Enterprise plans only.

Get your API key

  1. Go to Settings > 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:

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 for full details on parameters and response fields.