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

# Get your studio

> The key's own studio profile, catalog counts, and the key's tier.

Returns the public profile of the studio the key belongs to, plus catalog counts and an echo of the calling key's tier. Useful as a connectivity/identity check ("whoami").

<Info>
  **Tier:** Free, any studio key.
</Info>

## Request

```bash theme={null}
curl https://nmcrate.com/api/public/v1/studio \
  -H "x-api-key: nmk_studio_..."
```

No parameters.

## Response

```json theme={null}
{
  "studio": {
    "slug": "my-studio",
    "name": "My Studio",
    "subtitle": "Premium Minecraft plugins",
    "description": "We build things.",
    "category": "plugins",
    "imageUrl": "https://cdn.example.com/logo.png",
    "bannerUrl": null,
    "followerCount": 128,
    "salesCount": 342,
    "isVerified": true,
    "url": "/studios/my-studio"
  },
  "products": {
    "total": 12,
    "published": 9
  },
  "apiKey": {
    "tier": "basic"
  }
}
```

| Field                | Description                                                                      |
| -------------------- | -------------------------------------------------------------------------------- |
| `studio`             | The studio's public profile, identical shape to the store's public studio pages. |
| `products.total`     | All non-archived products, drafts included.                                      |
| `products.published` | Products currently live in the store.                                            |
| `apiKey.tier`        | `basic` or `premium`, the tier of the key making this request.                   |
