GET
/
luma
/
generations
/
{id}
curl -X GET https://www.anyfast.ai/luma/generations/gen_123456 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "gen_123456",
  "state": "completed",
  "video": {
    "url": "https://example.com/video.mp4"
  },
  "created_at": "2024-01-01T00:00:00Z"
}
Query the status of a Luma AI video generation task.

Path Parameters

id
string
required
Task ID.
curl -X GET https://www.anyfast.ai/luma/generations/gen_123456 \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "gen_123456",
  "state": "completed",
  "video": {
    "url": "https://example.com/video.mp4"
  },
  "created_at": "2024-01-01T00:00:00Z"
}