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

# List providers

> List mock SaaS provider slugs your organization can snapshot.

Returns the provider slugs granted to the API key’s organization. Use a slug from this list when creating a snapshot.

**Base URL:** `https://simulation.ressl.ai`

## Headers

<ParamField header="Authorization" type="string" required>
  `Bearer rsk_...` (or use `X-API-Key` instead).
</ParamField>

## Response

<ResponseField name="providers" type="string[]" required>
  Provider slugs available to your org (for example `jira`, `salesforce`, `slack`).
</ResponseField>

```json theme={"system"}
{
  "providers": ["jira", "salesforce", "slack"]
}
```

Your array may be shorter or longer depending on grants.

## Example

```bash theme={"system"}
curl -sS https://simulation.ressl.ai/providers/list \
  -H "Authorization: Bearer rsk_..."
```

## Errors

| Status | Meaning                    |
| ------ | -------------------------- |
| `401`  | Invalid or missing API key |
