# FabTally Instant Digital Fabrication Quote

> FabTally Instant Digital Fabrication Quote is a paid API for AI agents from fabtally.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns an instant price quote for 3D printing a given model file, including unit price, setup fee, material cost, machine cost, print time, and filament usage.

## Facts

- Endpoint: POST https://fabtally.com/agent/v1/quote
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/fabtally-instant-digital-fabrication-quote-2162f551
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zjzem3Wzun8_DcRrv_07t

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability fabtally-instant-digital-fabrication-quote-2162f551 -d '<json body>'
```

Example prompt: Can you get me an instant FabTally quote for printing 25 copies of this bracket.stl file in PETG-CF? I want to see the per-unit price, total cost, and how long the print will take.

## When to prefer this

Use FabTally when you need a fast, programmatic price estimate for 3D printing before committing to a manufacturing order, especially when you need detailed cost breakdowns (machine cost, material cost, setup fee) or want to evaluate volume pricing across multiple quantities or materials. Prefer this over manual quoting tools or contacting a fabrication shop directly when you need instant, structured quote data that an agent can act on.

## Known failure modes

- File too large (>64 MB) — upload rejected
- Unsupported file format — must be STL, 3MF, OBJ, or STEP
- Invalid material ID — must be one of the supported enum values
- Quantity out of range — must be between 1 and 10,000
- Malformed or corrupt 3D model file — cannot be sliced or analyzed
- Payment not provided or insufficient — x402 payment required at $0.005 USDC per call

## How this service works

FabTally gives instant, accurate quotes for digital fabrication jobs. Launching soon.

## Output

Returns a JSON object containing the quoted model filename, material used, quantity, per-unit breakdown (price, setup fee, machine cost, material cost), total cost in USD, any quantity discount applied, estimated filament usage in grams, print duration in seconds and human-readable format, and the timestamp when the quote was generated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "file"
 ],
 "properties": {
  "file": {
   "type": "string",
   "description": "3D model file to quote (STL, 3MF, OBJ, STEP). Max 64 MB."
  },
  "material": {
   "type": "string",
   "description": "Material/profile id. One of: pla, pla-cf, petg, petg-cf, abs, abs-cf, asa, asa-cf, nylon, pc, pet, tpu. Default pla."
  },
  "quantity": {
   "type": "string",
   "description": "Number of parts, 1-10000. Volume discounts apply. Default 1."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "example": {
  "model": "bracket.stl",
  "quote": {
   "unit": {
    "price": 5,
    "setup_fee": 1.5,
    "machine_cost": 0.69,
    "material_cost": 0.1
   },
   "total": 5,
   "currency": "USD",
   "quantity": 1,
   "quantity_discount": 0
  },
  "material": "pla",
  "quoted_at": "2026-07-30T16:40:00Z",
  "filament_g": 4.16,
  "print_time_sec": 988,
  "print_time_human": "16m28s"
 },
 "properties": {
  "model": {
   "type": "string"
  },
  "quote": {
   "type": "object",
   "properties": {
    "unit": {
     "type": "object",
     "properties": {
      "price": {
       "type": "number"
      },
      "setup_fee": {
       "type": "number"
      },
      "machine_cost": {
       "type": "number"
      },
      "material_cost": {
       "type": "number"
      }
     }
    },
    "total": {
     "type": "number"
    },
    "currency": {
     "type": "string"
    },
    "quantity": {
     "type": "integer"
    },
    "quantity_discount": {
     "type": "number"
    }
   }
  },
  "material": {
   "type": "string"
  },
  "quoted_at": {
   "type": "string",
   "format": "date-time"
  },
  "filament_g": {
   "type": "number"
  },
  "print_time_sec": {
   "type": "integer"
  },
  "print_time_human": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/fabtally-instant-digital-fabrication-quote-2162f551/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from fabtally.com](https://www.zero.xyz/host/fabtally.com/llms.txt)
