GET
/
v1
/
creation
/
{creation_id}
curl --request GET \
  --url https://api.haiper.ai/v1/creation/{creation_id} \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "value": {
    "creation_id": "<string>",
    "user_id": "<string>",
    "username": "<string>",
    "avatar": "<string>",
    "type": "<string>",
    "input_type": "<string>",
    "prompt": "<string>",
    "negative_prompt": "<string>",
    "create_time": "<string>",
    "update_time": "<string>",
    "status": "<string>",
    "video_url": "<string>",
    "thumbnail_url": "<string>",
    "settings": {
      "fps": 123,
      "width": 123,
      "height": 123
    },
    "commits": {
      "like_count": 123,
      "is_like": true,
      "collects_count": 123,
      "is_collect": true
    },
    "output_type": "<string>",
    "outputs": [
      {
        "id": "<string>",
        "media_url": "<string>",
        "thumbnail_url": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

creation_id
string
required

Response

200
application/json
status
string
required
value
object