Request

Response

    Important!

    The 3D print API is shutting down on January 15, 2017. See our end of life notice for more information.

    Field Guidea>

    This field guide presents the 3D Print API objects, and shows typical object examples. It also gives descriptions for each field.

    Mesh

    Meshes represent 3D objects to be printed. A mesh consists of 3D geometry, a name, an affine transform, and optional texture images.

    • geom is the 3D geometry, a collection of triangles that define the exterior surface (and possibly multiple interior surfaces) of the 3D object. 3D geometry can include UV coordinates for texture mapping using the texture images.
    • name is a UTF8 string suitable for display to the end-user.
    • transform represents affine transform positions and scales the mesh in the printer’s three dimensional build space. It is specified as the first three columns of a 4x4 matrix in which the last column is implicit and set to [ 0, 0, 0, 1 ].

      In order to compute the positions of mesh vertices under the transform, the position vectors are implicitly extended to four elements with the scalar 1.0 and premultiplied as a row vector by the affine transform matrix. The last component is discarded and the result is the new position.

      The unit of length in the endpoint is centimeters, so a scale factor that converts each unit to centimeters may be required in the affine transform.

    Meshes are immutable: Mesh endpoints that appear to modify an existing mesh actually return a new mesh and leave the original mesh unchanged.

    Meshes can be created from 3MF, binary STL, ASCII STL, OBJ, or a zip file containing an OBJ file with associated MTL file and texture images. The support formats for texture images (if specified) are PNG and JPEG.

    Schema

    Field

    Type

    Description

    id string: UUID Mesh ID
    name string User-visible mesh name
    internal_file_id int The ID of the file generated when the mesh is imported and the imported 3D geometry is stored
    transform array: array: int An array of 12 numbers representing a 3D affine transformation matrix
    geom object Geometric summary information for the mesh
    geom.num_vertices int Number of mesh vertices
    geom.num_triangles int Number of mesh triangles
    geom.has_uvs bool Whether the mesh has texture coordinates
    geom.bounding_box object The axis-aligned bounding box of the mesh, reported in the object space coordinates
    geom.bounding_box.min array: float Minimum x, y, and z values of every vertex in the mesh
    geom.bounding_box.max array: float Maximum x, y, and z values of every vertex in the mesh
    analyzed bool Whether the mesh has been analyzed for problems
    problems array: object
    the problems detected on a mesh; only present if analyzed is true

    At most 600 vertext positions will be returned
    problems.type enum: string
    the type of problem

    Possible values:

    degenerate_triangles: triangles with zero area, which cause distortion, measurement errors, and slow the printing process (triangles will hold an array of triangles with zero area.)

    duplicate_triangles: triangles with the same vertices, which cause redundant or overlapping edges (triangles will hold an array of triangles with the same vertices.)

    nonmanifold_vertices: A vertex adjacent to more than two untwinned edges or a vertex adjacent to more than two triangles at the same edge that causes incorrect orientation or intersection of the surface of the model (vertices will hold an array of vertices.)

    duplicate_vertices: vertices that are co-located at edges (vertices will hold an array of vertices.)

    inconsistently_oriented_triangles: a triangle edge adjacent to another triangle with the opposite orientation, which causes gaps in the model or render the printer unable to distinguish the inside from the outside of the model (edges will hold an array of edges.)

    holes: The mesh surface is incomplete and not a single “watertight” solid structure (boundaries will hold an array of vertex arrays.)

    inverted_volume: The mesh has an orientation that implies a shape that is inside-out. In other words, the orientation of the faces imply surface normals that points inward towards the supposed interior.

    unorientable_triangles: The mesh has triangles that do not have a consistent orientation in a way that can be repaired.
    problems.triangles array: object
    Triangles that have a problem

    Each triangle is represented by three sets of numbers giving its position in the object space of the mesh.

    At most 200 entries will be returned.
    problems.vertices array: object
    Vertices that have a problem

    Each vertex is represented by its position in the object space of the mesh.
    problems.edges array: object
    Edges that have a problem

    Each of these edges describes a pair of faces that do not share a consistent orientation. Each edge is represented by the two vertices at each end of the edge, where for each endpoint a set of numbers giving the object space positions of the mesh.

    At most 200 entries will be returned.
    problems.boundaries array: object
    An array of vertex arrays representing problem boundaries

    Each vertex array represents one of the holes in the mesh. Each vertex is represented by its position in the object space of the mesh.

    Example Object

    {
      "id": "8f7ef44b-d4ef-41c8-8ded-a0c9d0999e55",
      "name": "image_damaged",
      "geom": {
        "num_vertices": 10046,
        "num_triangles": 20081,
        "has_uvs": false
      },
      "transform": [
        [
          1,
          0,
          0,
          0
        ],
        [
          0,
          1,
          0,
          0
        ],
        [
          0,
          0,
          1,
          3
        ]
      ],
      "analyzed": true,
      "problems": [
        {
          "triangles": [
            {
              "v0": [
                5.918893814086914,
                33.73568344116211,
                9.202703475952148
              ],
              "v1": [
                5.848534107208252,
                33.87462615966797,
                9.152109146118164
              ],
              "v2": [
                5.913722991943359,
                33.85252380371094,
                9.214763641357422
              ]
            }
          ],
          "type": "duplicate_triangles"
        }
      ]
    }
    
    Show More

    Tray

    Trays are printable files, set up to match the build-platform (the tray) of a particular printer type. During tray preparation the mesh positions, slicing parameters and material settings are optimized for the intended printer. Completed trays can be output to the 3D printer. Tray creation uses printer type settings and print profiles from the Print Definitions section.

    Trays are immutable: Tray endpoints return a new tray and leave the original tray unchanged.

    Tray coordinate systems originate at the bottom center of the build volume. The X-axis points to the right for a user facing the front of the printer. The Y-axis points to the back of the printer and the Z-axis points up. The tray coordinate system is in units of centimeters.

    Schema

    Field

    Type

    Description

    id string: UUID Tray ID
    printer_type_id string: UUID Type of printer that uses this tray
    settings object Settings for printing and slicing
    default_material_id string: UUID If a mesh does not have a material assigned to it, the default material is used.
    meshes array: string: UUID identifiers of meshes to be used in the tray
    mesh_attrs object Parameters for the algorithm that fits the mesh onto the tray, indexed by mesh
    mesh_attrs[meshID].reposition bool Whether the Tray Preparation endpoint will reposition and scale this mesh to fit multiple meshes on the tray.
    mesh_attrs[meshID].reorient bool Whether the Tray Preparation endpoint will rotate this mesh to fit multiple meshes on the tray
    mesh_attrs[meshID].support bool Whether the Tray Preparation endpoint will calculate support material requirements for the mesh
    state enum: string
    Possible values:
    created: Tray created, no calculations made.
    repaired: All meshes have been repaired.
    oriented: Optimal orientations computed for meshes.
    positioned: Tray layout computed.
    supported: Support structures have been computed for the meshes.
    ready bool Whether the printable can be computed

    Example Object

    {
      "id": "c88a02c2-4868-4a6e-b7af-793ae23c76ff",
      "printer_type_id": "7FAF097F-DB2E-45DC-9395-A30210E789AA",
      "settings": {
        "support_angle_tol": 1.3,
        "layer_height": 0.0020,
        "burn_in_layers": 3
      },
      "meshes": [
        {
          "id": "19f38eb7-4cb5-429c-8e25-0e440f8bfd2b",
          "name": "mage_damaged",
          "geom": {
            "num_vertices": 10046,
            "num_triangles": 20080,
            "has_uvs": false,
            "bounding_box": {
              "max": [
                12.562538146972656,
                56.06819534301758,
                16.380802154541016
              ],
              "min": [
                -16.40504264831543,
                -0.0002610000083222985,
                -13.500799179077148
              ]
            }
          },
          "transform": [
            [
              1,
              0,
              0,
              0
            ],
            [
              0,
              1,
              0,
              0
            ],
            [
              0,
              0,
              1,
              0
            ]
          ],
          "analyzed": true,
          "problems": [
            {
              "type": "nonmanifold_vertices"
            }
          ]
        }
      ],
      "mesh_attrs": {
        "19f38eb7-4cb5-429c-8e25-0e440f8bfd2b": {
          "reposition": true,
          "reorient": true,
          "support": true
        }
      },
      "state": "created",
      "ready": false,
      "default_material_id": "426F14FE-E6AF-496F-BBC7-7D6C0E16861D"
    }
    
    Show More

    Task

    Most print preparation endpoints are asynchronous; they do not halt execution of your program and instead initiate a task that runs in the background.

    Your program must call the GET tasks/:id endpoint to monitor execution and get the response to the asynchronous endpoint.

    Schema

    Field

    Type

    Description

    id string: UUID Task ID
    status enum: string Possible values: running, done, and error
    progress float A value between 0 (not started) and 1 (complete)
    result object The response if status is done
    error object The error message if status is error

    Example Object

    A running task:

    {
      "id": "34F0E39A-9389-42BA-AB5A-4F2CD59C98E4",
      "status": "running",
      "progress": 0.75
    }
    

    A completed task where status field value is done:

    {
      "id": "5253850e-e876-49a0-bf94-aae1e7ef03ab",
      "progress": 1,
      "status": "done",
      "task_update_time": "2016-05-15T07:06:30.348Z",
      "result": {
        "id": "d7a326ba-5208-4712-a67a-8f4929945676",
        "name": "testPrintFlow",
        "geom": {
          "bounding_box": {
            "max": [
              31.225000381469727,
              22.575000762939453,
              12.225000381469727
            ],
            "min": [
              -31.225000381469727,
              -41,
              -12.225000381469727
            ]
          },
          "has_uvs": false,
          "num_triangles": 4278,
          "num_vertices": 2131
        },
        "analyzed": false
      }
    }
    

    A completed task where status field value is error:

    {
      "id": "1d2400b5-b9c8-417b-ba51-49aba007eddb",
      "progress": 1,
      "status": "error",
      "task_update_time": "2016-06-06T06:45:31.980Z",
      "error": {
        "error_id": "84257912-cfb9-4761-96b0-9d64a0f95e5c",
        "message": "",
        "code": -1
      }
    }
    

    Printer Type

    Printer types describe a particular 3D printer model. Data is provided by the printer manufacturer. Forge supports printers with a rectangular build volume.

    Schema

    Field

    Type

    Description

    id string: UUID Printer type ID
    version int Incremented every time this printer type ID is updated
    profile_id string: UUID Profile that provides the printing and slicing settings (see Profile object)
    manufacturer string Printer hardware manufacturer’s name
    name string Printer model’s name
    technology enum: string
    Printing technology used by the hardware:
    DLP (digital light processing)
    FDM (fused deposition modeling)
    default_material_id string: UUID ID of the default material for this printer type
    default_profile_id string: UUID ID of the default profile for this printer type
    icon_id string ID of a PNG icon file for the printer type
    supported_connections array: object Type of printer, printer protocol, and printer info
    build_volume object Information about the build volume of the printer hardware
    build_volume.type enum: string
    Possible values:
    cartesian (a rectangular prism)
    cylindrical (a cylinder)
    build_volume.bed_size array: int Volume dimensions (usually width, depth, and height)
    build_volume.bed_file_id string ID of a bed visualization ZIP file containing OBJ data; must include one OBJ file, may also include an MTL file and PNG or JPG images
    build_volume.park_position array: int Specifies where to position the extruder (in cm) after the print is complete
    build_volume.home_position array:int Specifies the starting position of the extruder (in cm)
    printable object The data that is sent to the printer
    printable.packager_file_id string ID of a file containing a Lua script, which converts the slicer output into a printable file
    printable.packager_data_files array: object Data files for packager
    printer_capabilities object FDM printers only. The capabilities of the printer
    printer_capabilities.num_extruders int FDM printers only. Number of extruders on the printer
    printer_capabilities.nozzle_diameter float FDM printers only. Nozzle tip diameter in cm
    printer_capabilities.nozzle_temp_max int FDM printers only. Maximum nozzle temperature in degrees Celsius
    printer_capabilities.bed_temp_max int
    FDM printers only. Maximum temperature for the print bed in degrees Celsius
    0 if not heated
    printer_capabilities.xy_speed_max float FDM printers only. Maximum travel speed in the xy-plane in cm/sec.
    printer_capabilities.z_speed_max float FDM printers only. Maximum travel speed in the z-plane in cm/sec.
    printer_capabilities.e_speed_max float FDM printers only. Maximum speed of filament retraction/engagement in cm/sec.

    Example Object

    {
      "id": "7B7F944D-5F30-4C49-AA95-837D4B441260",
      "manufacturer": "Autodesk",
      "model": "Ember",
      "technology": "DLP",
      "firmware": "Custom",
      "output": "PNG-GZIP",
      "supported_connections": [
        "TCP_IP",
        "SD"
      ],
      "preferred_connection": "TCP_IP",
      "connections": {},
      "build_volume": {},
      "materials_types": [
        "PHOTORESIN"
      ],
      "max_materials": 1,
      "dlp_specs": {}
    }
    

    Material

    Materials provide a variety of information about the substances used in 3D printing, including associated printing technology, color, extrusion details, and associated printer types.

    Schema

    Field

    Type

    Description

    id string: UUID Material type ID
    version int Incremented every time this material ID is updated
    name string Material name
    technology enum: string
    Possible values:
    DLP (digital light processing)
    FDM (fused deposition modeling)
    composition string
    Chemical names of materials present
    Composites use the format PLA/Bronze
    printer_types array Printer types that use this material
    cost float Cost in USD per kilogram net weight of material
    manufacturer string Material manufacturer
    website string Website of primary distributor
    color string
    HTML color code of the material
    For example: FB452B
    opacity enum: int
    Degree of transparency:
    1: opaque (impenetrable to light)
    2: semi-translucent
    3: translucent (penetrable by light)
    rating enum: int
    Quality of material compared to published manufacturer tolerances:
    5: excellent
    4: good
    3: okay
    2: poor
    1: unacceptable
    tags array: string Properties that are unique to the material, such as food-safe, high-strength, and bpa-free
    pct-shrink float
    Shrink percentage between additive forming state and finished product state
    null means undefined by manufacturer
    is_user bool Whether the material is in the user’s inventory of available materials.
    filament_diameter float FDM printers only. Diameter of filament feedstock in millimeters
    filament_extrusion_to_flow_multiplier float
    FDM printers only. Ratio of input feedstock volume to output extrusion volume
    Nominally 1.00, but voids or predictable material obstructions make it > 0
    temp_extrude_default int FDM printers only. Default material extrusion temperature in degrees Celsius
    temp_min_extrude int FDM printers only. Minimum material extrusion temperature in degrees Celsius
    temp_max_extrude int FDM printers only. Maximum material extrusion temperature in degrees Celsius
    temp_bed int FDM printers only. Heated build platform temperature in degrees Celsius for optimal adhesion.
    min_nozzle_diameter float
    FDM printers only. Minimum size of nozzle for use with this material
    null means undefined by manufacturer
    For example: 0.4mm is the minimum nozzle diameter for PLA / wood composite filament without jamming.
    extruder_fan_speed enum: int
    FDM printers only. Intensity of the extrudite cooling fan
    Range: 0 to 255
    Fans are sized to machine parameters.
    firstExposureSec int DLP printers only. Exposure time in seconds for DLP projection onto resin for first layer or material
    burnInLayers int DLP printers only. Number of layers in the “burn-in” period for the material
    burnInExposureSec int DLP printers only. Exposure time in seconds for DLP projection onto resin for each burn in layer of material
    modelExposureSec int DLP printers only. Exposure time in seconds for DLP projection onto normal layers of material.
    density float DLP printers only. Density of the resin in kg/L.

    Example Object

    {
      "id": "426F14FE-E6AF-496F-BBC7-7D6C0E16861D",
      "version": 1,
      "name": "PHOTORESIN BLACK",
      "technology": "PHOTORESIN",
      "printer_types": [
        "7FAF097F-DB2E-45DC-9395-A30210E789AA"
      ],
      "cost": 100,
      "exposure_power": 1,
      "cure_time_adhesion": 1,
      "cure_time_intermediary": 1,
      "cure_time_nominal_layers": 1,
      "color": "0b0b0a",
      "protein_ref": 1234,
      "manufacturer": "Autodesk",
      "composition": "urethane"
    }
    

    Profile

    A profile is a set of slicing parameters associated with a printer type.

    Schema

    Field

    Type

    Description

    id string: UUID Profile ID. Profile IDs are UUIDs.
    version int Incremented every time this profile ID is updated
    name string Profile’s public name
    technology enum: string
    Possible values:
    DLP (digital light processing)
    FDM (fused deposition modeling)
    printer_types array: string: UUID
    Printer type IDs that can use this profile
    See the Printer Type object for more information.
    layer_height float The distance between vertical layers of material
    support_angle_tol float The angle from vertical above which faces are considered to be overhanging
    support_contact_tol float
    If an overhanging triangle has a vertex within this distance from the build platform it will be excluded from support

    Example Object

    {
      "id": "34F0E39A-9389-42BA-AB5A-4F2CD59C98E4",
      "version": 1,
      "technology": "PHOTORESIN",
      "name": "Ember High Quality",
      "printer_types": [
        "7FAF097F-DB2E-45DC-9395-A30210E789AA"
      ],
      "support_angle_tol": 45.0,
      "support_contact_tol": 0.0,
      "support_min_radius": 0.0,
      "support_min_separation": 0.0,
      "layer_height": 0.02,
      "layer_height_first": 0.2,
      "img_width": 912,
      "img_height": 1140,
      "brightness_blur_radius": 21,
      "brightness_input_min": 0.01,
      "brightness_input_max": 0.25,
      "brightness_output_min": 1.0,
      "brightness_output_max": 0.88
    }
    
     
    ______
    icon-svg-close-thick

    Cookie preferences

    Your privacy is important to us and so is an optimal experience. To help us customize information and build applications, we collect data about your use of this site.

    May we collect and use your data?

    Learn more about the Third Party Services we use and our Privacy Statement.

    Strictly necessary – required for our site to work and to provide services to you

    These cookies allow us to record your preferences or login information, respond to your requests or fulfill items in your shopping cart.

    Improve your experience – allows us to show you what is relevant to you

    These cookies enable us to provide enhanced functionality and personalization. They may be set by us or by third party providers whose services we use to deliver information and experiences tailored to you. If you do not allow these cookies, some or all of these services may not be available for you.

    Customize your advertising – permits us to offer targeted advertising to you

    These cookies collect data about you based on your activities and interests in order to show you relevant ads and to track effectiveness. By collecting this data, the ads you see will be more tailored to your interests. If you do not allow these cookies, you will experience less targeted advertising.

    icon-svg-close-thick

    THIRD PARTY SERVICES

    Learn more about the Third-Party Services we use in each category, and how we use the data we collect from you online.

    icon-svg-hide-thick

    icon-svg-show-thick

    Strictly necessary – required for our site to work and to provide services to you

    Qualtrics
    We use Qualtrics to let you give us feedback via surveys or online forms. You may be randomly selected to participate in a survey, or you can actively decide to give us feedback. We collect data to better understand what actions you took before filling out a survey. This helps us troubleshoot issues you may have experienced. Qualtrics Privacy Policy
    Akamai mPulse
    We use Akamai mPulse to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Akamai mPulse Privacy Policy
    Digital River
    We use Digital River to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Digital River Privacy Policy
    Dynatrace
    We use Dynatrace to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Dynatrace Privacy Policy
    Khoros
    We use Khoros to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Khoros Privacy Policy
    Launch Darkly
    We use Launch Darkly to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Launch Darkly Privacy Policy
    New Relic
    We use New Relic to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. New Relic Privacy Policy
    Salesforce Live Agent
    We use Salesforce Live Agent to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Salesforce Live Agent Privacy Policy
    Wistia
    We use Wistia to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Wistia Privacy Policy
    Tealium
    We use Tealium to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Tealium Privacy Policy
    Upsellit
    We use Upsellit to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Upsellit Privacy Policy
    CJ Affiliates
    We use CJ Affiliates to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. CJ Affiliates Privacy Policy
    Commission Factory
    We use Commission Factory to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Commission Factory Privacy Policy
    Google Analytics (Strictly Necessary)
    We use Google Analytics (Strictly Necessary) to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Google Analytics (Strictly Necessary) Privacy Policy
    Typepad Stats
    We use Typepad Stats to collect data about your behaviour on our sites. This may include pages you’ve visited. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our platform to provide the most relevant content. This allows us to enhance your overall user experience. Typepad Stats Privacy Policy
    Geo Targetly
    We use Geo Targetly to direct website visitors to the most appropriate web page and/or serve tailored content based on their location. Geo Targetly uses the IP address of a website visitor to determine the approximate location of the visitor’s device. This helps ensure that the visitor views content in their (most likely) local language.Geo Targetly Privacy Policy
    SpeedCurve
    We use SpeedCurve to monitor and measure the performance of your website experience by measuring web page load times as well as the responsiveness of subsequent elements such as images, scripts, and text.SpeedCurve Privacy Policy
    Qualified
    Qualified is the Autodesk Live Chat agent platform. This platform provides services to allow our customers to communicate in real-time with Autodesk support. We may collect unique ID for specific browser sessions during a chat. Qualified Privacy Policy

    icon-svg-hide-thick

    icon-svg-show-thick

    Improve your experience – allows us to show you what is relevant to you

    Google Optimize
    We use Google Optimize to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Google Optimize Privacy Policy
    ClickTale
    We use ClickTale to better understand where you may encounter difficulties with our sites. We use session recording to help us see how you interact with our sites, including any elements on our pages. Your Personally Identifiable Information is masked and is not collected. ClickTale Privacy Policy
    OneSignal
    We use OneSignal to deploy digital advertising on sites supported by OneSignal. Ads are based on both OneSignal data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that OneSignal has collected from you. We use the data that we provide to OneSignal to better customize your digital advertising experience and present you with more relevant ads. OneSignal Privacy Policy
    Optimizely
    We use Optimizely to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Optimizely Privacy Policy
    Amplitude
    We use Amplitude to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Amplitude Privacy Policy
    Snowplow
    We use Snowplow to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Snowplow Privacy Policy
    UserVoice
    We use UserVoice to collect data about your behaviour on our sites. This may include pages you’ve visited. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our platform to provide the most relevant content. This allows us to enhance your overall user experience. UserVoice Privacy Policy
    Clearbit
    Clearbit allows real-time data enrichment to provide a personalized and relevant experience to our customers. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID.Clearbit Privacy Policy
    YouTube
    YouTube is a video sharing platform which allows users to view and share embedded videos on our websites. YouTube provides viewership metrics on video performance. YouTube Privacy Policy

    icon-svg-hide-thick

    icon-svg-show-thick

    Customize your advertising – permits us to offer targeted advertising to you

    Adobe Analytics
    We use Adobe Analytics to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, and your Autodesk ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Adobe Analytics Privacy Policy
    Google Analytics (Web Analytics)
    We use Google Analytics (Web Analytics) to collect data about your behavior on our sites. This may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. We use this data to measure our site performance and evaluate the ease of your online experience, so we can enhance our features. We also use advanced analytics methods to optimize your experience with email, customer support, and sales. Google Analytics (Web Analytics) Privacy Policy
    AdWords
    We use AdWords to deploy digital advertising on sites supported by AdWords. Ads are based on both AdWords data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that AdWords has collected from you. We use the data that we provide to AdWords to better customize your digital advertising experience and present you with more relevant ads. AdWords Privacy Policy
    Marketo
    We use Marketo to send you more timely and relevant email content. To do this, we collect data about your online behavior and your interaction with the emails we send. Data collected may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, email open rates, links clicked, and others. We may combine this data with data collected from other sources to offer you improved sales or customer service experiences, as well as more relevant content based on advanced analytics processing. Marketo Privacy Policy
    Doubleclick
    We use Doubleclick to deploy digital advertising on sites supported by Doubleclick. Ads are based on both Doubleclick data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Doubleclick has collected from you. We use the data that we provide to Doubleclick to better customize your digital advertising experience and present you with more relevant ads. Doubleclick Privacy Policy
    HubSpot
    We use HubSpot to send you more timely and relevant email content. To do this, we collect data about your online behavior and your interaction with the emails we send. Data collected may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, email open rates, links clicked, and others. HubSpot Privacy Policy
    Twitter
    We use Twitter to deploy digital advertising on sites supported by Twitter. Ads are based on both Twitter data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Twitter has collected from you. We use the data that we provide to Twitter to better customize your digital advertising experience and present you with more relevant ads. Twitter Privacy Policy
    Facebook
    We use Facebook to deploy digital advertising on sites supported by Facebook. Ads are based on both Facebook data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Facebook has collected from you. We use the data that we provide to Facebook to better customize your digital advertising experience and present you with more relevant ads. Facebook Privacy Policy
    LinkedIn
    We use LinkedIn to deploy digital advertising on sites supported by LinkedIn. Ads are based on both LinkedIn data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that LinkedIn has collected from you. We use the data that we provide to LinkedIn to better customize your digital advertising experience and present you with more relevant ads. LinkedIn Privacy Policy
    Yahoo! Japan
    We use Yahoo! Japan to deploy digital advertising on sites supported by Yahoo! Japan. Ads are based on both Yahoo! Japan data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Yahoo! Japan has collected from you. We use the data that we provide to Yahoo! Japan to better customize your digital advertising experience and present you with more relevant ads. Yahoo! Japan Privacy Policy
    Naver
    We use Naver to deploy digital advertising on sites supported by Naver. Ads are based on both Naver data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Naver has collected from you. We use the data that we provide to Naver to better customize your digital advertising experience and present you with more relevant ads. Naver Privacy Policy
    Quantcast
    We use Quantcast to deploy digital advertising on sites supported by Quantcast. Ads are based on both Quantcast data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Quantcast has collected from you. We use the data that we provide to Quantcast to better customize your digital advertising experience and present you with more relevant ads. Quantcast Privacy Policy
    Call Tracking
    We use Call Tracking to provide customized phone numbers for our campaigns. This gives you faster access to our agents and helps us more accurately evaluate our performance. We may collect data about your behavior on our sites based on the phone number provided. Call Tracking Privacy Policy
    Wunderkind
    We use Wunderkind to deploy digital advertising on sites supported by Wunderkind. Ads are based on both Wunderkind data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Wunderkind has collected from you. We use the data that we provide to Wunderkind to better customize your digital advertising experience and present you with more relevant ads. Wunderkind Privacy Policy
    ADC Media
    We use ADC Media to deploy digital advertising on sites supported by ADC Media. Ads are based on both ADC Media data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that ADC Media has collected from you. We use the data that we provide to ADC Media to better customize your digital advertising experience and present you with more relevant ads. ADC Media Privacy Policy
    AgrantSEM
    We use AgrantSEM to deploy digital advertising on sites supported by AgrantSEM. Ads are based on both AgrantSEM data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that AgrantSEM has collected from you. We use the data that we provide to AgrantSEM to better customize your digital advertising experience and present you with more relevant ads. AgrantSEM Privacy Policy
    Bidtellect
    We use Bidtellect to deploy digital advertising on sites supported by Bidtellect. Ads are based on both Bidtellect data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Bidtellect has collected from you. We use the data that we provide to Bidtellect to better customize your digital advertising experience and present you with more relevant ads. Bidtellect Privacy Policy
    Bing
    We use Bing to deploy digital advertising on sites supported by Bing. Ads are based on both Bing data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Bing has collected from you. We use the data that we provide to Bing to better customize your digital advertising experience and present you with more relevant ads. Bing Privacy Policy
    G2Crowd
    We use G2Crowd to deploy digital advertising on sites supported by G2Crowd. Ads are based on both G2Crowd data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that G2Crowd has collected from you. We use the data that we provide to G2Crowd to better customize your digital advertising experience and present you with more relevant ads. G2Crowd Privacy Policy
    NMPI Display
    We use NMPI Display to deploy digital advertising on sites supported by NMPI Display. Ads are based on both NMPI Display data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that NMPI Display has collected from you. We use the data that we provide to NMPI Display to better customize your digital advertising experience and present you with more relevant ads. NMPI Display Privacy Policy
    VK
    We use VK to deploy digital advertising on sites supported by VK. Ads are based on both VK data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that VK has collected from you. We use the data that we provide to VK to better customize your digital advertising experience and present you with more relevant ads. VK Privacy Policy
    Adobe Target
    We use Adobe Target to test new features on our sites and customize your experience of these features. To do this, we collect behavioral data while you’re on our sites. This data may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, your IP address or device ID, your Autodesk ID, and others. You may experience a different version of our sites based on feature testing, or view personalized content based on your visitor attributes. Adobe Target Privacy Policy
    Google Analytics (Advertising)
    We use Google Analytics (Advertising) to deploy digital advertising on sites supported by Google Analytics (Advertising). Ads are based on both Google Analytics (Advertising) data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Google Analytics (Advertising) has collected from you. We use the data that we provide to Google Analytics (Advertising) to better customize your digital advertising experience and present you with more relevant ads. Google Analytics (Advertising) Privacy Policy
    Trendkite
    We use Trendkite to deploy digital advertising on sites supported by Trendkite. Ads are based on both Trendkite data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Trendkite has collected from you. We use the data that we provide to Trendkite to better customize your digital advertising experience and present you with more relevant ads. Trendkite Privacy Policy
    Hotjar
    We use Hotjar to deploy digital advertising on sites supported by Hotjar. Ads are based on both Hotjar data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Hotjar has collected from you. We use the data that we provide to Hotjar to better customize your digital advertising experience and present you with more relevant ads. Hotjar Privacy Policy
    6 Sense
    We use 6 Sense to deploy digital advertising on sites supported by 6 Sense. Ads are based on both 6 Sense data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that 6 Sense has collected from you. We use the data that we provide to 6 Sense to better customize your digital advertising experience and present you with more relevant ads. 6 Sense Privacy Policy
    Terminus
    We use Terminus to deploy digital advertising on sites supported by Terminus. Ads are based on both Terminus data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that Terminus has collected from you. We use the data that we provide to Terminus to better customize your digital advertising experience and present you with more relevant ads. Terminus Privacy Policy
    StackAdapt
    We use StackAdapt to deploy digital advertising on sites supported by StackAdapt. Ads are based on both StackAdapt data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that StackAdapt has collected from you. We use the data that we provide to StackAdapt to better customize your digital advertising experience and present you with more relevant ads. StackAdapt Privacy Policy
    The Trade Desk
    We use The Trade Desk to deploy digital advertising on sites supported by The Trade Desk. Ads are based on both The Trade Desk data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that The Trade Desk has collected from you. We use the data that we provide to The Trade Desk to better customize your digital advertising experience and present you with more relevant ads. The Trade Desk Privacy Policy
    RollWorks
    We use RollWorks to deploy digital advertising on sites supported by RollWorks. Ads are based on both RollWorks data and behavioral data that we collect while you’re on our sites. The data we collect may include pages you’ve visited, trials you’ve initiated, videos you’ve played, purchases you’ve made, and your IP address or device ID. This information may be combined with data that RollWorks has collected from you. We use the data that we provide to RollWorks to better customize your digital advertising experience and present you with more relevant ads. RollWorks Privacy Policy

    Are you sure you want a less customized experience?

    We can access your data only if you select "yes" for the categories on the previous screen. This lets us tailor our marketing so that it's more relevant for you. You can change your settings at any time by visiting our privacy statement

    Your experience. Your choice.

    We care about your privacy. The data we collect helps us understand how you use our products, what information you might be interested in, and what we can improve to make your engagement with Autodesk more rewarding.

    May we collect and use your data to tailor your experience?

    Explore the benefits of a customized experience by managing your privacy settings for this site or visit our Privacy Statement to learn more about your options.