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

# Browse Marketplace

> Find a published model and decide whether it fits your use case.

# Browse Marketplace

Start in Marketplace when you need to choose a model. Do not begin with the API
unless you already know the model slug, operation, input shape, and pricing.

## What to check

* The model name, publisher, and description match your use case.
* The supported operations include the action you need, usually `execute`.
* The input types match what your app can send: text, image, audio, video, file,
  or JSON.
* The pricing and billing unit are acceptable for your expected traffic.
* The model page has enough examples or article content for your team to judge
  expected behavior.

## Open a model

From the product app, use:

```text theme={null}
/{locale}/marketplace
/{locale}/marketplace/{model-slug}
```

From an integration, you can read public catalog data through the Gateway:

```bash theme={null}
curl "$AIMP_GATEWAY_URL/api/marketplace/models"
```

To load one model:

```bash theme={null}
curl "$AIMP_GATEWAY_URL/api/marketplace/models/demo-model"
```

## Next step

After choosing a model, [try it in Playground](./try-playground) before creating
production integration code.
