Image-to-3d
4 Get 3d Preview

Introduction

Get 3D from image-to-3d.

Get 3D

Request

POST /image-to-3d-sessions/get-3d/preview/<Session Code>

Parameters

selected_spin_index OPTIONAL
type : number
in : body
default : 0
description : select image index from generated four images. Available selected index : 0, 1, 2, 3
Note : You have to pass this parameter if preview_mesh is turbo.


selected_spin OPTIONAL
type : string
in : body
description : select one image url from generated spins four images.
Note : You have to pass this parameter if preview_mesh is turbo.


Python


import requests
import json

url = "https://api.csm.ai:5566/image-to-3d-sessions/get-3d/preview/SESSION_P_44569824122"

payload = json.dumps({})

headers = {
  'x-api-key': '<X-API_KEY>',
  'Content-Type': 'application/json'
}

response = requests.request("POST", url, headers=headers, data=payload)

print(response.text)

Node.js

var request = require('request');
var options = {
  'method': 'POST',
  'url': 'https://api.csm.ai:5566/image-to-3d-sessions/get-3d/preview/SESSION_P_44569824122',
  'headers': {
    'x-api-key': '<X-API_KEY>',
    'Content-Type': 'application/json'
  },
  'body': JSON.stringify({})
};
request(options, function (error, response) {
  if (error) throw new Error(error);
  console.log(response.body);
});

Curl

curl -k --location 'https://api.csm.ai:5566/image-to-3d-sessions/get-3d/preview/SESSION_P_44569824122' \
--header 'x-api-key: <X-API_KEY>' \
--header 'Content-Type: application/json' \
--data '{
}'

Response

{
  "error": "",
  "message": "Generating Mesh",
  "statusCode": 200,
  "data": {
    "scenario": "SESSION_P_44569824122",
    "unique_trial_key": "168923176748ZJ@NcRfUjXn2r5u8x",
    "status": "unprocessed",
    "complete_job_data": {
      "scenario": "SESSION_P_44569824122",
      "job_priority": "2",
      "username": "admin@test.com",
      "call": "dreamfusion",
      "user_id": "000000",
      "status": "unprocessed",
      "start_time": "1689231769.6472576",
      "unique_trial_key": "168923176748ZJ@NcRfUjXn2r5u8x",
      "task_data": "{\"scenario\": \"SESSION_P_44569824122\", \"unique_trial_key\": \"168923176748ZJ@NcRfUjXn2r5u8x\", \"customer_email\": \"admin@yopmail.com\", \"image_url\": \"https://via.placeholder.com/300/09f/fff.png\", \"text_prompt\": \"Walk\", \"keyword\": \"\", \"discord_user_id\": \"\"}",
      "id": "job:dreamfusion:SESSION_P_44569824122_168923176748ZJ@NcRfUjXn2r5u8x"
    }
  }
}