List Jobs For A Hedra Model
hedra_list_model_jobsList submitted jobs for a specific model, newest first, with pagination. Provide a model ID to retrieve jobs and a cursor to fetch the next page.
Instructions
List jobs submitted to one specific model, most recent first, paginated.
Args:
model_id (string, required): the model's public id.
limit (number, optional, default 20, max 100): items per page.
cursor (string, optional): pass the previous response's next_cursor for the next page.
Returns: JSON {jobs: [...], next_cursor}.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum items per page (1-100). | |
| cursor | No | Opaque pagination cursor from a previous response's next_cursor. Omit for the first page. | |
| model_id | Yes | The model's public id (e.g. 'seedance-20', 'gpt-image-2', 'hedra-avatar'). Get valid ids from hedra_list_models. |