Saltar al contenido principal
GET
/
projects
/
jobs
/
{jobId}
Get job status
curl --request GET \
  --url https://faces.app/api/v1/projects/jobs/{jobId} \
  --header 'Authorization: Bearer <token>'
{
  "jobId": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "editorUrl": "<string>",
  "finalDuration": "45 seconds",
  "publishedUrl": "<string>",
  "error": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.faces.app/llms.txt

Use this file to discover all available pages before exploring further.

Autorizaciones

Authorization
string
header
requerido

API key with "faces_" prefix. Create one at Settings > Developers.

Parámetros de ruta

jobId
string
requerido

The job ID returned by generateProject.

Respuesta

Job status

jobId
string
requerido
status
enum<string>
requerido
Opciones disponibles:
processing,
completed,
failed
createdAt
string<date-time>
requerido
editorUrl
string<uri>
finalDuration
string

Actual generation time. Only present when status is completed.

Ejemplo:

"45 seconds"

publishedUrl
string<uri>

Available when status is completed.

error
string

Error message when status is failed.