Business
DEVELOPERS

BeeGraphy API

Programmatic access to configurators, quotes and manufacturing orders.

In development
Embed a configurator

Drop a licensed model into your own site with a script tag and your license key.

<script
  src="https://api.beegraphy.example/v1/embed.js"
  data-license-key="lic_your_key"
  data-model="model_id">
</script>
Create a quote

Send a configuration and quantity, get manufacturing quotes from qualified workshops.

POST https://api.beegraphy.example/v1/quotes

{
  "model": "model_id",
  "configuration": { "width": 1200, "material": "plywood" },
  "quantity": 25
}
Place a manufacturing order

Turn an accepted quote into an order with a chosen workshop and shipping details.

POST https://api.beegraphy.example/v1/orders

{
  "quote": "quote_id",
  "workshop": "workshop_slug",
  "shipping": { "country": "DE", "postcode": "50667" }
}
Order status webhook

Your endpoint receives a payload whenever an order moves through its lifecycle.

{
  "event": "order.status_changed",
  "order": "order_id",
  "status": "in_production",
  "occurred_at": "2026-08-14T09:30:00Z"
}

API keys are issued with the parametric API license, alongside the embed keys. Every key is scoped to one organization, so requests always act on that organization's catalog and orders.