Builds

Get build status with enriched package metadata

get

Retrieves the latest build statuses ordered by commit date, with package metadata enriched from the package collection

Authorizations
Query parameters
repositoryIdentifierstringRequired

Repository identifier (e.g., owner/repo)

Example: flxbl-io/sf-core
limitnumber · min: 1 · max: 100Optional

Maximum number of builds to return

Default: 20
offsetnumberOptional

Offset for pagination

Default: 0
domainstringOptional

Filter by specific domain

Example: core
Responses
200

Build status retrieved successfully

application/json
get
GET /sfp/api/builds/status?repositoryIdentifier=flxbl-io%2Fsf-core HTTP/1.1
Host: 
Authorization: Bearer JWT
Accept: */*
{
  "builds": [
    {
      "commitId": "text",
      "commitMessage": "text",
      "commitAuthor": "text",
      "commitDate": "text",
      "commitTimestamp": 1,
      "domains": {
        "ANY_ADDITIONAL_PROPERTY": "anything"
      },
      "firstSeenAt": "text",
      "lastUpdatedAt": "text"
    }
  ],
  "total": 1,
  "hasMore": true
}

Was this helpful?