Find an API

Search public APIs with auth details & Postman guides

← All APIs

Voodoo Manufacturing 3D Print API

voodoomfg · Developer Tools

Developer Tools No Auth Free & Open tools

Welcome to the Voodoo Manufacturing API docs! Your Voodoo Manufacturing API key must be included with each request to the API. The API will look for the key in the "api_key" header of the request. You can request a key here. This API provides a programmatic interface for submitting printing orders to Voodoo Manufacturing. The general process for creating an order is as follows: - Get a list of the available materials

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get a quote a given model id.

Calculates a quote for the given model in the given material and quantity. This endpoint required that you've already uploaded the model to our servers -- to get a quote for a model you haven't yet uploaded, you can try /model/quote_attrs.

https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote?units=example&model_id=1&quantity=1&material_id=1&options[orientation]=true

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote?units=example&model_id=1&quantity=1&material_id=1&options[orientation]=true"
import requests
params = {
    "units": "example",
    "model_id": "1",
    "quantity": "1",
    "material_id": "1",
    "options[orientation]": "true"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote');
url.searchParams.set('units', 'example');
url.searchParams.set('model_id', '1');
url.searchParams.set('quantity', '1');
url.searchParams.set('material_id', '1');
url.searchParams.set('options[orientation]', 'true');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote")
	q := baseURL.Query()
	q.Set("units", "example")
	q.Set("model_id", "1")
	q.Set("quantity", "1")
	q.Set("material_id", "1")
	q.Set("options[orientation]", "true")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote")
uri.query = URI.encode_www_form({
  "units" => "example",
  "model_id" => "1",
  "quantity" => "1",
  "material_id" => "1",
  "options[orientation]" => "true"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote?" . http_build_query([
    "units" => "example",
    "model_id" => "1",
    "quantity" => "1",
    "material_id" => "1",
    "options[orientation]" => "true"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get a quote for a model with the given attributes.

This endpoint will provide a quote for a model matching the submitted parameters. Note that this quote may be different than the quote provided by /model/quote in the case that your attribute calculations differ from the ones used by Voodoo Manufacturing.

https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote_attrs?x=1&y=1&z=1&units=example&volume=1&quantity=1&material_id=1&surface_area=1&options[orientation]=true

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote_attrs?x=1&y=1&z=1&units=example&volume=1&quantity=1&material_id=1&surface_area=1&options[orientation]=true"
import requests
params = {
    "x": "1",
    "y": "1",
    "z": "1",
    "units": "example",
    "volume": "1",
    "quantity": "1",
    "material_id": "1",
    "surface_area": "1",
    "options[orientation]": "true"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote_attrs",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote_attrs');
url.searchParams.set('x', '1');
url.searchParams.set('y', '1');
url.searchParams.set('z', '1');
url.searchParams.set('units', 'example');
url.searchParams.set('volume', '1');
url.searchParams.set('quantity', '1');
url.searchParams.set('material_id', '1');
url.searchParams.set('surface_area', '1');
url.searchParams.set('options[orientation]', 'true');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote_attrs")
	q := baseURL.Query()
	q.Set("x", "1")
	q.Set("y", "1")
	q.Set("z", "1")
	q.Set("units", "example")
	q.Set("volume", "1")
	q.Set("quantity", "1")
	q.Set("material_id", "1")
	q.Set("surface_area", "1")
	q.Set("options[orientation]", "true")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote_attrs")
uri.query = URI.encode_www_form({
  "x" => "1",
  "y" => "1",
  "z" => "1",
  "units" => "example",
  "volume" => "1",
  "quantity" => "1",
  "material_id" => "1",
  "surface_area" => "1",
  "options[orientation]" => "true"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/model/quote_attrs?" . http_build_query([
    "x" => "1",
    "y" => "1",
    "z" => "1",
    "units" => "example",
    "volume" => "1",
    "quantity" => "1",
    "material_id" => "1",
    "surface_area" => "1",
    "options[orientation]" => "true"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Voodoo Manufacturing offers printing in a number of different materials, with different color options for each. Your organization can expose as many or as few material options as you want to your end-customer.

The Materials endpoint returns a list of materials that are currently available for production for your account. The responses include display details about each material, along with the unique id required to request a print in a specific material.

https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/materials

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/materials"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/materials",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/materials';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/materials"
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/materials")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/voodoomfg.com/2.0.0/materials";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Voodoo Manufacturing 3D Print API?

Voodoo Manufacturing 3D Print API is a Developer Tools API. Developers commonly use developer tools APIs for:

  • automating code review and quality checks
  • integrating CI/CD pipelines and build systems
  • managing feature flags and A/B tests
  • monitoring errors and application performance
  • generating and validating test data

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Voodoo Manufacturing 3D Print API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide · Learn about API keys · What is REST?

Open documentation ↗