Authentication

To access the CAPTUR3D API, you need to authenticate your requests using an API key. This key grants access to your CAPTUR3D account, so keep it secure and never expose it publicly.

Generating an API Key

  1. Log in to your CAPTUR3D account at https://captur3d.io

  2. Navigate to Company Settings (click your profile icon top right) → Integrations

  3. Generate a new CAPTUR3D API key if you don’t already have one.

  4. Copy and securely store your API key, as it will be required for all API requests.

You can find or generate your API key in the CAPTUR3D Settings.

Making API Requests

Authentication to the CAPTUR3D API is performed via HTTP Bearer Auth. Your API key should be included in the Authorization header of each request.

Example Request

curl -H "Authorization: Bearer YOUR_API_KEY" \
     -H "Content-Type: application/json" \
     https://captur3d.io/api/v2/heartbeat

Expected Response:

HTTP Status: 200

{
    "data": {}
}

Should you encounter difficulty authenticating with either API, please do not hesitate to reach out to us at developers@captur3d.io for support.