Skip to content
GET /v1/design-size

Finished size from stitch and fabric count

Try it live

10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.

Custom headers (optional)
api.oanor.com/embroidery-api

It works. Grab an API key and use it in your project.

Get an API key

Code snippets

curl "https://api.oanor.com/embroidery-api/v1/design-size" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/embroidery-api/v1/design-size", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/embroidery-api/v1/design-size");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/embroidery-api/v1/design-size",
    headers={"x-oanor-key": "oanor_test_..."}
)

Example response

A real response from this endpoint, captured by the latest health check.

{
    "data": {
        "note": "The finished size = the stitch count ÷ the fabric count (stitches per inch). A 140 × 98 design on 14-count Aida is 10 × 7 inches (25.4 × 17.8 cm); the same chart on 18-count finishes smaller and on 11-count larger, because a higher count packs more stitches per inch. The total stitch count (width × height) drives the floss and the hours.",
        "inputs": {
            "fabric_count": 14,
            "stitch_count_h": 98,
            "stitch_count_w": 140
        },
        "width_cm": 25.4,
        "width_in": 10,
        "height_cm": 17.78,
        "height_in": 7,
        "total_stitches": 13720
    },
    "meta": {
        "timestamp": "2026-06-07T08:17:52.992Z",
        "request_id": "e52d770f-4acd-409d-9256-7559fa791ec1"
    },
    "status": "ok",
    "message": "Design size",
    "success": true
}