Get Brand Details
Retrieve details about a specific project (brand).
curl https://app.elasticfunnels.io/api/brands/{brand_id} \
-H "EF-Access-Key: your_api_key_here"
{
"id": 123,
"name": "My Awesome Funnel",
"subdomain": "myawesomefunnel",
"timezone": "America/New_York",
"currency": "USD",
"subscription_status": "active",
"created_at": "2024-01-15T10:30:00.000000Z",
"updated_at": "2024-12-10T08:20:00.000000Z"
}
List All Brands
Get a list of all projects you have access to.
curl https://app.elasticfunnels.io/api/brands/all \
-H "EF-Access-Key: your_api_key_here"
{
"data": [
{
"id": 123,
"name": "My Awesome Funnel",
"subdomain": "myawesomefunnel",
"subscription_status": "active"
},
{
"id": 456,
"name": "Another Project",
"subdomain": "anotherproject",
"subscription_status": "active"
}
]
}
Update Brand
Update project settings (requires admin/owner permissions).
Project timezone (e.g., “America/New_York”)
Currency code (e.g., “USD”, “EUR”)
curl -X PUT https://app.elasticfunnels.io/api/brands/{brand_id} \
-H "EF-Access-Key: your_api_key_here" \
-H "Content-Type: application/json" \
-d '{
"name": "Updated Project Name",
"timezone": "America/Los_Angeles"
}'
{
"id": 123,
"name": "Updated Project Name",
"subdomain": "myawesomefunnel",
"timezone": "America/Los_Angeles",
"currency": "USD",
"subscription_status": "active",
"updated_at": "2024-12-10T15:45:00.000000Z"
}
Get Brand Metrics
Retrieve configured metrics for the project.
GET /api/brands/{brand}/metrics
curl https://app.elasticfunnels.io/api/brands/{brand_id}/metrics \
-H "EF-Access-Key: your_api_key_here"
{
"metrics": [
"orders",
"revenue",
"aov",
"conversion_rate",
"roas"
]
}