Skip to main content
GET
/
applications
Get applications
curl --request GET \
  --url https://api.sevalla.com/v2/applications \
  --header 'Authorization: Bearer <token>'
{
  "company": {
    "apps": {
      "items": [
        {
          "id": "fb5e5168-4281-4bec-94c5-0d1584e9e657",
          "name": "my-app",
          "display_name": "My Application",
          "status": "deploymentSuccess"
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Pass your API key as a Bearer token in the Authorization header.

Query Parameters

company
string<uuid>
required

Company ID

Example:

"fb5e5168-4281-4bec-94c5-0d1584e9e657"

limit
integer
default:10

Maximum items per response

Required range: 1 <= x <= 100
Example:

10

offset
integer
default:0

Pagination offset

Required range: 0 <= x <= 10000
Example:

0

Response

Default Response

company
object
required