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

# Activity Filter Options

> List users, API keys, routers, models, and providers available to activity filters.

Use this endpoint to discover IDs before calling activity endpoints with `user_id`, `api_key_id`, or `router_id`.

<ParamField header="Authorization" type="string" required>`Bearer` plus a Management API key.</ParamField>
<ParamField query="from" type="string" required>RFC 3339 range start, inclusive.</ParamField>
<ParamField query="to" type="string" required>RFC 3339 range end, exclusive.</ParamField>
<ParamField query="source_scope" type="string">`openai_chat`, `openai_responses`, `anthropic_messages`, comma-separated, `all`, or `none`.</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.dari.dev/v1/organizations/current/routing/activity/filter-options?from=2026-07-01T00:00:00Z&to=2026-07-08T00:00:00Z" \
    -H "Authorization: Bearer $DARI_API_KEY"
  ```
</RequestExample>

The response contains `routers`, `api_keys`, `users`, `models`, and `providers`. User entries include `id`, `name`, and `email`.

```bash theme={null}
dari activity filter-options \
  --from 2026-07-01T00:00:00Z \
  --to 2026-07-08T00:00:00Z |
  jq '.users[] | {id, name, email}'
```
