Quickstart

Follow these steps to make your first API call.

1

Get an API Key

Sign in to the Dashboard to generate your unique API key.

2

Choose an Endpoint

Decide which endpoint fits your needs (/single, /batch, or /sequence).

3

Prepare Your Request

Construct a JSON request body with your model URL and desired parameters.

4

Make the Call

Send a POST request to the endpoint with the correct headers and body.

Example using cURL

Here is a quick example using cURL:

curl -X POST 'https://api.frame3d.dev/single' \
-H 'x-api-key: YOUR_API_KEY' \
-H 'Content-Type: application/json' \
-d '{
  "model": "https://example.com/your-model.glb"
}'