Get the build log of a build

GET /apps/{app-slug}/builds/{build-slug}/log

Get the build log of a specified build of a Bitrise app. You can get the build slug either by calling the /builds endpoint or by clicking on the build on bitrise.io and copying the slug from the URL. Preview of the log is returned in log_chunks field in JSON format. You can download the full raw log in txt by using the signed url returned in expiring_raw_log_url. Be aware that this url is expiring in 10 minutes!

Path parameters

Responses

  • Bad Request

    Hide response attribute Show response attribute object
  • Unauthorized

    Hide response attribute Show response attribute object
  • Not Found

    Hide response attribute Show response attribute object
  • Internal Server Error

    Hide response attribute Show response attribute object
GET /apps/{app-slug}/builds/{build-slug}/log
curl \
 --request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/builds/{build-slug}/log' \
 --header "Authorization: $API_KEY"
Response examples (400)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (500)
{
  "message": "string"
}