Apps
List Apps
List apps and their environments.
GET
/
v1
/
apps
curl --request GET \
--url https://api.apitally.io/v1/apps \
--header 'Api-Key: <api-key>'
{
"data": [
{
"id": 1,
"name": "My API",
"framework": "FastAPI",
"client_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"envs": [
{
"id": 1,
"name": "prod",
"created_at": "2023-11-07T05:31:56Z",
"last_sync_at": "2023-11-07T05:31:56Z"
}
],
"created_at": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
Response
200 - application/json
Successful Response
The response is of type object
.
curl --request GET \
--url https://api.apitally.io/v1/apps \
--header 'Api-Key: <api-key>'
{
"data": [
{
"id": 1,
"name": "My API",
"framework": "FastAPI",
"client_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"envs": [
{
"id": 1,
"name": "prod",
"created_at": "2023-11-07T05:31:56Z",
"last_sync_at": "2023-11-07T05:31:56Z"
}
],
"created_at": "2023-11-07T05:31:56Z"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.