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.
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
- Go to dashboard.framen.com/account/orgs
- Copy your Org ID from the organization settings page
Your token will look like this:
Using the token
Include your organization token as a path parameter in all API requests:
curl -X GET "https://api.framen.com/vendor/Org_4KmTqZnWpLx/locations"
For a POST request to create a location:
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"
}'
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 immediately.