⚙️
Developer
Fenicher API
BetaAdvanced · 1–2 hours setup
Use the Fenicher REST API to upload assets, generate viewer tokens, pull analytics, and manage your workspace programmatically — integrate with any internal system, ERP, or custom quoting tool.
Upload assets and get a viewer token in response
Generate shareable viewer links via API
Pull analytics (views, opens, countries) per asset
Manage workspace members and roles
Webhook support for view events
How to set it up
1
Get your API key
Dashboard → Settings → API Keys → Generate New Key.
2
Upload an asset
POST to /api/v1/assets with your file and metadata.
curl -X POST https://fenicher.com/api/v1/assets \
-H "Authorization: Bearer YOUR_API_KEY" \
-F "file=@chair.glb" \
-F "name=Oslo Chair" \
-F "category=Seating"
# Response:
{
"token": "abc123",
"viewerUrl": "https://fenicher.com/view/abc123",
"status": "processing"
}3
Get analytics
Fetch view events for any asset.
curl https://fenicher.com/api/v1/assets/abc123/analytics \
-H "Authorization: Bearer YOUR_API_KEY"
# Response:
{
"totalViews": 142,
"uniqueVisitors": 89,
"countries": ["ID", "SG", "AU", "US"],
"lastViewed": "2026-05-06T08:23:00Z"
}4
Embed viewer in your system
Use the viewerUrl in any iframe or redirect users to it from your quoting system, ERP, or custom portal.
Best for
- →Custom ERP integrations
- →In-house quoting systems
- →Furniture platform developers
- →Agency white-label implementations
Ready to set up Fenicher API?
Start your 30-day free trial — no credit card required.