Get a specific app
Get the details of a specific app by providing the app slug. You can get the app slug by calling the /apps endpoint or by opening the app on bitrise.io and copying the slug from the URL.
Path parameters
-
app-slug
string Required App slug
GET
/apps/{app-slug}
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": {
"avatar_url": "string",
"is_disabled": true,
"is_github_checks_enabled": true,
"is_public": true,
"owner": {
"account_type": "string",
"name": "string",
"slug": "string"
},
"project_type": "string",
"provider": "string",
"repo_owner": "string",
"repo_slug": "string",
"repo_url": "string",
"slug": "string",
"status": 42,
"title": "string"
}
}
Response examples (400)
{
"message": "string"
}
Response examples (401)
{
"message": "string"
}
Response examples (404)
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}