Skip to main content

Widget embed (no auth required)

The embed snippet uses a data-brokerage-id attribute. This is a public identifier — it does not grant write access and is safe to include in client-side code.
<script
  src="https://aris247.com/widget.js"
  data-brokerage-id="YOUR_BROKERAGE_ID"
  async>
</script>

API keys

For programmatic access (REST API, MCP, CLI), create a developer API key in the ARIS dashboard under Settings → Developer Keys. API keys are prefixed with aris_ and scoped to your brokerage. Include the key in every request:
X-ARIS-API-Key: aris_yourkey

Key properties

PropertyDescription
Prefixaris_
ScopeBound to one brokerage
RevocableSet to inactive without deleting
Trackablelast_used_at updated on each request

Creating a key

1

Log in

2

Navigate to Developer Keys

Settings → Developer Keys → Create Key
3

Name it

Give it a name like “Production”, “Staging”, or “CI”.
4

Copy the key

Copy the key — it won’t be shown again.

Environment variable

Store your key as an environment variable rather than hardcoding it:
export ARIS_API_KEY=aris_yourkey
The CLI and MCP server both read ARIS_API_KEY from the environment automatically.

Revoking a key

In the dashboard, toggle a key to Inactive. The key immediately stops working but is not deleted, so you can reactivate it later.