POST
/
fetch
/
{id}
Fetch 3D Response
curl --request POST \
  --url https://modelslab.com/api/v1/enterprise/3d/fetch/{id} \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "enterprise_api_key"
}'
{
  "status": "success",
  "id": 12202888,
  "output": [
    "https://pub-8b49af329fae499aa563997f5d4068a4.r2.dev/generations/e5cd86d3-7305-47fc-82c1-7d1a3b130fa4-0.png"
  ]
}
This endpoint does not generate new images, it returns already generated/queued images.

Request

Send a POST request to below endpoint to return the corresponding queued images.
curl
--request POST 'https://modelslab.com/api/v1/enterprise/3d/fetch/{id}' \

Body

json
{ 
    "key": "enterprise_api_key"
}

Path Parameters

id
string
required

The ID returned with the image URL upon generation

Body

application/json
key
string
required

Your enterprise API key used for request authorization

Example:

"enterprise_api_key"

Response

Successful response

status
enum<string>
required

Status of the request

Available options:
success,
error
id
integer

The ID of the generated content

Example:

12202888

output
string<uri>[]

Array of URLs for the generated content

Example:
[
"https://pub-8b49af329fae499aa563997f5d4068a4.r2.dev/generations/e5cd86d3-7305-47fc-82c1-7d1a3b130fa4-0.png"
]