Get Process Results

Retrieve generated images, videos, segmentation data or 3d file with processing_url parameter.

Get generation status and results with processing_url parameter to this endpoint.

You can alternatively get same response from your generate endpoint with adding processing_url to the url parameters.

POST /v2/results

Parameters

Name
Type
Description

processing_url

string

Curl Example

curl -X GET https://api.luw.ai/v2/results \
  -H "Authorization: Bearer LUW_API_TOKEN" \
  -d "processing_url=abc123"

Response Example (Processing)

{
  "status": true,
  "progress": {
    "started_at": "2024-01-04T12:00:00Z",
    "state": "processing",
    "percent": 45
  },
  "processing": true,
  "processing_url": "pred_123..."
}

Response Example (Success)

{
  "status": true,
  "output": "https://i.luvicdn.com/luwai/18378/luwai-1258-1736026549.png"
}

Last updated