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

# Authentication

> How to authenticate with the Screen Manager API.

All API requests require your **organization token** (`org_token`) as a path parameter. There are no additional headers or API keys required.

## Getting your token

1. Go to [dashboard.framen.com/account/orgs](https://dashboard.framen.com/account/orgs)
2. Copy your **Org ID** from the organization settings page

Your token will look like this:

```
Org_4KmTqZnWpLx
```

## Using the token

Include your organization token as a path parameter in all API requests:

```bash theme={null}
curl -X GET "https://api.framen.com/vendor/Org_4KmTqZnWpLx/locations"
```

For a POST request to create a location:

```bash theme={null}
curl -X POST "https://api.framen.com/vendor/Org_4KmTqZnWpLx/locations" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Downtown Mall",
    "latitude": 40.7128,
    "longitude": -74.0060,
    "venue_type_id": "205"
  }'
```

<Warning>
  Keep your organization token confidential. Treat it like a password and do not commit it to version control or share it publicly. If your token is compromised, contact [support@framen.com](mailto:support@framen.com) immediately.
</Warning>
