Skip to main content
GET
/
artifacts
/
{org}
/
{flow_name}
/
{fingerprint}
/
latest_commit
Get latest artifact commit
curl --request GET \
  --url https://app.kosli.com/api/v2/artifacts/{org}/{flow_name}/{fingerprint}/latest_commit \
  --header 'Authorization: Bearer <token>'
{
  "latest_commit": "c8f476a48dee6f98e0aac8a6e418e2207900827f"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

flow_name
string
required
Pattern: ^[a-zA-Z0-9][a-zA-Z0-9\.\-_~]*$
fingerprint
string
required
Pattern: ^[a-f0-9]{64}$
org
string
required

Query Parameters

branch
string | null

The branch to get the commit from

Response

Successful Response

latest_commit
string | null
required
Last modified on April 9, 2026