This documentation page is intended for developers looking to integrate the Dielines API into their systems. If you have any questions, please get in touch.
Die Cut Templates provides a hosted API available via HTTPS.
Dielines API allows for generating custom dielines in PDF, DXF, and SVG formats, along with 3D mockups.
To fetch the dieline template (becf-30203) via the API, please make a
GET request to
https://api.diecuttemplates.com/dieline-templates/in/becf-30203
curl -i -X GET \
https://api.diecuttemplates.com/dieline-templates/in/becf-30203 \
-H 'Authorization: Bearer <YOUR_DIELINES_API_KEY_HERE>' \
-H 'Dielines-Api-Version: 1.0'
require 'uri'
require 'net/http'
require 'openssl'
url = URI('https://api.diecuttemplates.com/dieline-templates/in/becf-30203')
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request['Dielines-Api-Version'] = '1.0'
request['Authorization'] = 'Bearer <YOUR_DIELINES_API_KEY_HERE>'
response = http.request(request)
puts response.read_body
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <YOUR_DIELINES_API_KEY_HERE>",
"Dielines-Api-Version: 1.0"
],
CURLOPT_URL => "https://api.diecuttemplates.com/dieline-templates/in/becf-30203",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$error = curl_error($curl);
curl_close($curl);
if ($error) {
echo "cURL Error #:" . $error;
} else {
echo $response;
}
application/json
{
"dieline_template": {
"type": "dieline_template",
"id": "becf-30203",
"group": {
"type": "dieline_template_group",
"id": "hard_cardboards_boxes_with_hinged_lid",
"name": "Boxes With Hinged Lid",
"category": "Hard Cardboards"
},
"tags": [],
"variables": [
{
"type": "dieline_template_variable",
"name": "length",
"description": "length",
"data_type": "length",
"required": true,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_a20250213-2-n956yd.svg"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "width",
"description": "width",
"data_type": "length",
"required": true,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_b20250213-2-1sd530.svg"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "height",
"description": "height ",
"data_type": "length",
"required": true,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_c20250213-2-sjkzem.svg"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "front_flap",
"description": "front flap",
"data_type": "length",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_y320250213-2-7o7vs3.svg"
},
"default_value": {
"value": 1.9685,
"unit": "in"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "cross",
"description": "cross",
"data_type": "boolean",
"required": false,
"default_value": {
"value": false
},
"allowed_values": [
true,
false,
0,
1
],
"childen": []
},
{
"type": "dieline_template_variable",
"name": "direction",
"description": "direction",
"data_type": "boolean",
"required": false,
"default_value": {
"value": false
},
"allowed_values": [
true,
false,
0,
1
],
"childen": []
},
{
"type": "dieline_template_variable",
"name": "number_of_magnets",
"description": "number of magnets",
"data_type": "integer",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_d120250213-2-au0yi3.svg"
},
"default_value": {
"value": 2
},
"allowed_values": [
1,
2,
3
],
"childen": []
},
{
"type": "dieline_template_variable",
"name": "magnet_diameter",
"description": "magnet diameter",
"data_type": "length",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_d20250213-2-godn0n.svg"
},
"default_value": {
"value": 0.395,
"unit": "in"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "magnet_distance",
"description": "magnet distance",
"data_type": "length",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_z120250213-2-vek6c8.svg"
},
"default_value": {
"value": 1.0145,
"unit": "in"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "bottom_inside_flap_1",
"description": "bottom inside flap",
"data_type": "length",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_e20250213-2-ng58c.svg"
},
"default_value": {
"value": 0.788,
"unit": "in"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "inside_side_margin",
"description": "inside side margin",
"data_type": "length",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_x120250213-2-iq205q.svg"
},
"default_value": {
"value": 0.1575,
"unit": "in"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "bottom_side_flap",
"description": "bottom side flap",
"data_type": "length",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_y120250213-2-93um91.svg"
},
"default_value": {
"value": 0.788,
"unit": "in"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "bottom_inside_flap_2",
"description": "bottom inside flap",
"data_type": "length",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_z220250213-2-mt6gvw.svg"
},
"default_value": {
"value": 0.788,
"unit": "in"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "number_of_cover_pieces",
"description": "number of cover pieces",
"data_type": "integer",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_f20250213-2-141xbj.svg"
},
"default_value": {
"value": 4
},
"allowed_values": [
3,
4
],
"childen": []
},
{
"type": "dieline_template_variable",
"name": "cover_has_magnet",
"description": "cover has magnet ?",
"data_type": "boolean",
"required": false,
"default_value": {
"value": true
},
"allowed_values": [
true,
false,
0,
1
],
"childen": []
},
{
"type": "dieline_template_variable",
"name": "cover_corner_angle",
"description": "cover corner angle",
"data_type": "angle",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_h20250213-2-a18gvn.svg"
},
"default_value": {
"value": 20
},
"allowed_values": [
20.0,
25.0,
30.0,
35.0,
40.0,
45.0
],
"childen": []
},
{
"type": "dieline_template_variable",
"name": "cover_side_flap_1",
"description": "cover side flap",
"data_type": "length",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_x220250213-2-9js41z.svg"
},
"default_value": {
"value": 0.788,
"unit": "in"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "cover_side_flap_2",
"description": "cover side flap",
"data_type": "length",
"required": false,
"image": {
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_51299_y220250213-2-t9k7vx.svg"
},
"default_value": {
"value": 0.788,
"unit": "in"
},
"childen": []
},
{
"type": "dieline_template_variable",
"name": "dimension_texts",
"description": "",
"data_type": "boolean",
"required": false,
"allowed_values": [
true,
false
],
"default_value": {
"value": true
}
}
],
"links": [
{
"rel": "self",
"href": "/dieline_templates/in/becf-30203",
"method": "GET"
},
{
"rel": "web",
"href": "https://www.diecuttemplates.com/dielines/51299/boxes-with-hinged-lid-becf-30203",
"method": "GET"
}
],
"images": [
{
"type": "svg",
"url": "https://d2atdwxjx7uc4i.cloudfront.net/svg_api/s_5129920250213-2-zqi8hx.svg"
}
]
}
}