GET
/
v1
/
applications
curl --location --request GET https://api.writer.com/v1/applications \
 --header "Authorization: Bearer <token>"
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "type": "generation",
      "status": "deployed",
      "inputs": [
        {
          "name": "<string>",
          "input_type": "text",
          "description": "<string>",
          "required": true,
          "options": {
            "list": [
              "<string>"
            ]
          }
        }
      ],
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "last_deployed_at": "2023-11-07T05:31:56Z"
    }
  ],
  "first_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "last_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "has_more": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your Writer API key.

Query Parameters

order
enum<string>
default:desc

Sort order for the results based on creation time.

Available options:
asc,
desc
before
string

Return results before this application ID for pagination.

after
string

Return results after this application ID for pagination.

limit
integer
default:50

Maximum number of applications to return in the response.

type
enum<string>

Filter applications by their type.

Available options:
generation

Response

200 - application/json
Successfully retrieved list of applications.

Response object containing a paginated list of applications.

data
object[]
required

List of application objects with their configurations.

Detailed application object including its input configuration.

has_more
boolean
required

Indicates if there are more results available in subsequent pages.

first_id
string

UUID of the first application in the current page.

last_id
string

UUID of the last application in the current page.