OCS Text-To-Image API
New in version 28.
The OCS Text-To-Image API allows you to run image generation tasks implemented by apps using the backend Text-To-Image API.
The base URL for all calls to this API is: <nextcloud_base_url>/ocs/v2.php/text2image/
All calls to OCS endpoints require the OCS-APIRequest
header to be set to true
.
Check availability
New in version 28.
Method:
GET
Endpoint:
/is_available
- Response:
- Status code:
200 OK
Data:
field |
type |
Description |
|
bool |
Boolean indicating whether any Text-To-Image providers are installed |
Schedule a task
New in version 28.
Note
The endpoint is rate limited as it can be quite resource intensive. Users can make 20 requests in 2 minutes, guests only 5
Method:
POST
Endpoint:
/schedule
Data:
field |
type |
Description |
|
string |
The input text for the task |
|
int |
The number of images to generate (optional; default: 8) |
|
string |
The id of the requesting app |
|
string |
An app-defined identifier for the task (optional) |
If possible the task will be executed while the request is processed on the server, otherwise it is scheduled as a background job.
- Response:
- Status code:
200 OK
412 Precondition Failed
- When the task type is not available currently429 Too Many Requests
- When the rate limiting was exceeded
- Data:
id
- Only provided in case of200 OK
, the assigned task id, intinput
- Only provided in case of200 OK
, the task input, stringstatus
- Only provided in case of200 OK
, the current task status, int, see the backend Text-To-Image APIuserId
- Only provided in case of200 OK
, the originating userId of the task, stringappId
- Only provided in case of200 OK
, the originating appId of the task, stringidentifier
- Only provided in case of200 OK
, the originating appId of the task, stringnumberOfImages
- Only provided in case of200 OK
, the number of generated images, intcompletionExpectedAt
- Only provided in case of200 OK
, the date and time when the result is expected to be completed as a UNIX timestamp, intmessage
- Only provided when not200 OK
, an error message in the user’s language, ready to be displayed
Fetch a task by ID
New in version 28.
Note
The endpoint is rate limited as it can be quite resource intensive. Users can make 20 requests in 2 minutes, guests only 5
Method:
POST
Endpoint:
/task/{id}
- Response:
- Status code:
200 OK
404 Not Found
- When the task could not be found
- Data:
id
- Only provided in case of200 OK
, the assigned task id, intinput
- Only provided in case of200 OK
, the task input, stringstatus
- Only provided in case of200 OK
, the current task status, int, see the backend Text-To-Image APIuserId
- Only provided in case of200 OK
, the originating userId of the task, stringappId
- Only provided in case of200 OK
, the originating appId of the task, stringidentifier
- Only provided in case of200 OK
, the originating appId of the task, stringnumberOfImages
- Only provided in case of200 OK
, the number of generated images, intcompletionExpectedAt
- Only provided in case of200 OK
, the date and time when the result is expected to be completed as a UNIX timestamp, intmessage
- Only provided when not200 OK
, an error message in the user’s language, ready to be displayed
Fetch a result image
New in version 28.
Method:
POST
Endpoint:
/task/{id}/image/{index}
*index
: The index of the image, starting at 0- Response:
- Status code:
200 OK
404 Not Found
- When the task could not be found, isn’t successful, isn’t completed yet, or the index is out of bounds
Data: The raw image data
Delete a task
New in version 28.
Method:
DELETE
Endpoint:
/task/{id}
- Response:
- Status code:
200 OK
404 Not Found
- When the task could not be found
- Data:
id
- Only provided in case of200 OK
, the assigned task id, intinput
- Only provided in case of200 OK
, the task input, stringstatus
- Only provided in case of200 OK
, the current task status, int, see the backend Text-To-Image APIuserId
- Only provided in case of200 OK
, the originating userId of the task, stringappId
- Only provided in case of200 OK
, the originating appId of the task, stringidentifier
- Only provided in case of200 OK
, the originating appId of the task, stringnumberOfImages
- Only provided in case of200 OK
, the number of generated images, intcompletionExpectedAt
- Only provided in case of200 OK
, the date and time when the result is expected to be completed as a UNIX timestamp, intmessage
- Only provided when not200 OK
, an error message in the user’s language, ready to be displayed
List tasks by App
New in version 28.
Note
The endpoint is rate limited as it can be quite resource intensive. Guests can only do 5 requests within 2 minutes
Method:
DELETE
Endpoint:
/tasks/app/{appId}
Data:
field |
type |
Description |
|
string |
The id of the requesting app |
|
string |
An app-defined identifier for the task (optional) |
- Response:
- Status code:
200 OK
404 Not Found
- When the task could not be found
- Data:
- Only provided in case of
200 OK
, an array of objects: id
- the assigned task id, intinput
- the task input, stringstatus
- the current task status, int, see the backend Text-To-Image APIuserId
- the originating userId of the task, stringappId
- the originating appId of the task, stringidentifier
- the originating appId of the task, stringnumberOfImages
- the number of generated images, intcompletionExpectedAt
- the date and time when the result is expected to be completed as a UNIX timestamp, int
- Only provided in case of
message
- Only provided when not200 OK
, an error message in the user’s language, ready to be displayed