Authorization: Bearer RODIN_API_KEY
export RODIN_API_KEY="your api key"
curl https://hyperhuman.deemos.com/api/v2/rodin_texture_only \
-H "Authorization: Bearer ${RODIN_API_KEY}" \
-F "image=@/path/to/your/image.jpg" \
-F "model=@path/to/your/model.obj" \
-F "reference_scale=1.0" \
-F "geometry_file_format=glb" \
-F "material=PBR" \
-F "resolution=High"
unset RODIN_API_KEY
import requests
# Constants
ENDPOINT = "https://hyperhuman.deemos.com/api/v2/rodin_texture_only"
API_KEY = "your api key" # Replace with your actual API key
IMAGE_PATH = "/path/to/your/image.jpg" # Replace with the path to your image
MODEL_PATH = "/path/to/your/model.obj"
# Prepare the headers
headers = {
'Authorization': f'Bearer {API_KEY}',
}
# Prepare the form data
files = {
'image': (os.path.basename(IMAGE_PATH), image_data, 'image/jpeg'),
'model': (os.path.basename(MODEL_PATH), model_data, 'model/obj'),
'reference_scale': (None, 1.0),
'geometry_file_format': (None, 'glb'),
'material': (None, PBR),
'resolution': (None, 'High'),
}
# Make the POST request
response = requests.post(ENDPOINT, headers=headers, files=files)
# Parse and return the JSON response
print(response.json())
{
"error": null,
"message": "Submitted.",
"uuid": "123e4567-e89b-12d3-a456-426614174000",
"jobs": {
"uuids": ["job-uuid-1", "job-uuid-2"],
"subscription_key": "sub-key-1"
}
}