Get a list of all build artifacts
List all build artifacts that have been generated for an app's build. This endpoint can retrieve artifacts from the archive as well. You can use the created build artifact slugs from the response output to retrieve data of a specific build artifact with the GET/apps/ endpoint or update a build artifact with the PATCH/apps endpoint.
Path parameters
-
app-slug
string Required App slug
-
build-slug
string Required Build slug
GET
/apps/{app-slug}/builds/{build-slug}/artifacts
curl \
--request GET 'https://api.bitrise.io/v0.1/apps/{app-slug}/builds/{build-slug}/artifacts' \
--header "Authorization: $API_KEY"
Response examples (200)
{
"data": [
{
"artifact_meta": {},
"artifact_type": "string",
"file_size_bytes": 42,
"intermediate_file_info": {},
"is_public_page_enabled": true,
"slug": "string",
"title": "string"
}
],
"paging": {
"next": "string",
"page_item_limit": 42,
"total_item_count": 42
}
}
Response examples (400)
{
"message": "string"
}
Response examples (401)
{
"message": "string"
}
Response examples (404)
{
"message": "string"
}
Response examples (500)
{
"message": "string"
}