Skip to main content
GET
/
v1
/
apps
List Apps
curl --request GET \
  --url https://api.mixpeek.com/v1/apps
{
  "results": [
    {
      "app_id": "<string>",
      "slug": "<string>",
      "url": "<string>",
      "meta": {
        "title": "<string>",
        "description": "Search across 10k+ product images",
        "logo_url": "https://cdn.example.com/logo.png",
        "favicon_url": "https://cdn.example.com/favicon.ico",
        "indexable": false
      },
      "is_active": true,
      "version": 123,
      "template": "<string>",
      "custom_domains": [
        {
          "domain": "<string>",
          "status": "pending",
          "verification_token": "<string>",
          "cname_target": "<string>",
          "tls_cert_id": "<string>",
          "tls_expires_at": "2023-11-07T05:31:56Z",
          "verified_at": "2023-11-07T05:31:56Z",
          "is_primary": false
        }
      ],
      "has_unpublished_changes": false,
      "auth_config": {
        "mode": "public",
        "clerk_org_id": "<string>",
        "clerk_allowed_providers": [
          "<string>"
        ],
        "password_hash": "<string>",
        "saml_idp_metadata_url": "<string>",
        "saml_sp_entity_id": "<string>",
        "saml_acs_url": "<string>",
        "oidc_issuer": "<string>",
        "oidc_client_id": "<string>",
        "oidc_client_secret_name": "<string>",
        "oidc_scopes": [
          "<string>"
        ],
        "jwt_jwks_url": "<string>",
        "jwt_audience": "<string>",
        "jwt_issuer": "<string>",
        "api_keys": [
          {}
        ]
      },
      "build_config": {
        "entry": "src/layout.jsx",
        "framework": "react",
        "tailwind": true,
        "env_vars": {},
        "asset_prefix": "<string>"
      },
      "monitoring_config": {
        "enabled": true,
        "error_boundary_enabled": true,
        "sentry_enabled": true,
        "posthog_enabled": true,
        "custom_error_message": "<string>",
        "auto_fix_enabled": true
      },
      "repo_url": "<string>",
      "repo_branch": "<string>",
      "environments": {},
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "total_count": 123,
  "limit": 123,
  "offset": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.mixpeek.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Headers

Authorization
string

REQUIRED: Bearer token authentication using your API key. Format: 'Bearer sk_xxxxxxxxxxxxx'. You can create API keys in the Mixpeek dashboard under Organization Settings.

Examples:

"Bearer YOUR_API_KEY"

"Bearer YOUR_STRIPE_API_KEY"

Query Parameters

limit
integer
default:100
Required range: 1 <= x <= 1000
offset
integer
default:0
Required range: x >= 0
template
string | null

Filter by template type

slug
string | null

Exact match on app slug

search
string | null

Case-insensitive partial match on app name

Response

Paginated list of Apps for this organization

Paginated list of apps.

results
AppListItem · object[]
required
total_count
integer
required
limit
integer
required
offset
integer
required