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

# Nomiq Billing, Plans, and Metered API Usage Pricing

> Compare Nomiq's Free, Pro, and Agency subscription tiers, understand API metering and overage pricing, and manage your workspace billing settings.

Nomiq offers three subscription tiers designed to grow with you—from a solo founder validating a single idea to a full-service agency managing dozens of client brands simultaneously. Your workspace subscription covers seat access and feature unlocks, while API usage is metered separately so you only pay for what you generate through the API. Only workspace **Admins** can view or change billing settings.

## Plan Comparison

| Feature                            | Free |    Pro    |   Agency  |
| ---------------------------------- | :--: | :-------: | :-------: |
| Active projects                    |   1  | Unlimited | Unlimited |
| Brand strategies per project       |   3  | Unlimited | Unlimited |
| High-resolution PNG / SVG export   |   —  |     ✓     |     ✓     |
| Custom templates                   |   —  |     —     |     ✓     |
| Client folders                     |   —  |     —     |     ✓     |
| Priority API access                |   —  |     —     |     ✓     |
| Editor seats                       |   1  |     5     | Unlimited |
| API generations included / month   |  100 |    500    |   2,000   |
| Annual billing discount            |   —  |    20%    |    20%    |
| SOC 2 Type II & AES-256 encryption |   ✓  |     ✓     |     ✓     |

**Free** gives you everything you need to generate and explore a single brand identity. You cannot export high-resolution files or create more than one active project, but the full generation engine is available.

**Pro** removes project and export limits, giving individual founders and small teams the ability to manage multiple brands and hand off production-ready assets to developers or printers.

**Agency** adds custom templates and client folders for teams that need a repeatable, structured delivery workflow, plus priority queue access on the API so generation latency stays low under heavy workload.

## API Metering

If you call the Nomiq API directly—for example, to embed brand generation into your own product—your API usage is tracked separately from your workspace subscription and billed as a metered overage at the end of each billing cycle.

* **Free tier:** 100 included API generations per calendar month at no charge.
* **Pro tier:** 500 included API generations per calendar month.
* **Agency tier:** 2,000 included API generations per calendar month.
* **Overage rate:** \$0.02 per generation beyond your plan's included amount, for all tiers.

To avoid unexpected charges, set a hard monthly cap in the Billing dashboard. When your workspace reaches the cap, the API returns a `429 quota_exceeded` error until the next billing cycle begins or you raise the cap manually.

```bash theme={null}
# Example: API response when the monthly hard cap is reached
HTTP/1.1 429 Too Many Requests
{
  "error": "quota_exceeded",
  "message": "Monthly API generation cap reached. Adjust your cap in Billing settings.",
  "reset_at": "2024-09-01T00:00:00Z"
}
```

## Upgrading to Pro

<Steps>
  <Step title="Open Billing settings">
    Click your workspace name in the top-left corner of the dashboard and select **Settings > Billing**. This tab is visible only to workspace Admins.
  </Step>

  <Step title="Choose a billing cycle">
    Under **Change Plan**, select **Pro**. Toggle between **Monthly** and **Annual** billing—annual billing saves 20% compared to the monthly rate.
  </Step>

  <Step title="Enter payment details">
    Click **Upgrade to Pro**. A Stripe-hosted payment form appears. Enter your credit card number, expiry date, CVC, and billing address. Nomiq never stores raw card data—all payment information is handled by Stripe.
  </Step>

  <Step title="Confirm the upgrade">
    Click **Confirm Payment**. Stripe processes the charge and returns a confirmation. Your workspace limits—unlimited projects, high-resolution exports, and additional Editor seats—are unlocked instantly. You receive a receipt by email.
  </Step>
</Steps>

## Downgrading or Cancelling

To downgrade from Pro to Free, go to **Settings > Billing** and click **Downgrade Plan**. Your Pro features remain active until the end of the current billing period. At that point, if you have more than one active project, all projects beyond the first are archived automatically—no data is deleted, but they become read-only until you re-upgrade.

To cancel your subscription entirely, click **Cancel Subscription** from the same page. Cancellation takes effect at the end of the billing period.

## Troubleshooting

<AccordionGroup>
  <Accordion title="My credit card failed but I see a pending charge on my statement.">
    Your bank placed a temporary authorization hold when Nomiq submitted the charge. If your bank ultimately declined the transaction—commonly due to a billing address or zip code mismatch—the hold drops automatically within 3–5 business days. To resolve it, go to **Settings > Billing > Payment Method**, click **Update Card**, and re-enter your card details making sure the billing address matches exactly what your bank has on file. Then click **Retry Payment**.
  </Accordion>

  <Accordion title="I cannot see the Billing tab in Settings.">
    The Billing tab is visible only to workspace Admins. If you are logged in as an Editor or Viewer, the tab does not appear. Ask the workspace Admin—typically the account owner or founder—to either handle the billing change directly or promote you to Admin if you need ongoing billing access.
  </Accordion>

  <Accordion title="My API overage charges are higher than expected.">
    Check your usage breakdown by going to **Settings > Billing > API Usage**. The graph shows daily generation counts broken down by API key. If you see unexpected spikes, an API key may have been leaked or a background job may be retrying failed requests in a loop. Rotate the affected key immediately from **Settings > Security > API Keys** and set a lower hard cap while you investigate.
  </Accordion>
</AccordionGroup>

<CardGroup cols={2}>
  <Card title="Collaboration" icon="users" href="/workspace/collaboration">
    Add Editor seats to your upgraded plan and invite your team to start collaborating.
  </Card>

  <Card title="Projects & Assets" icon="folder-tree" href="/workspace/projects-and-assets">
    Create unlimited projects now that you have upgraded to Pro or Agency.
  </Card>

  <Card title="Security" icon="shield" href="/workspace/security">
    Secure your API keys and configure SSO after upgrading to Agency.
  </Card>

  <Card title="API Reference" icon="code" href="/api-reference/overview">
    Track and manage your metered API usage programmatically.
  </Card>
</CardGroup>
