Check if artifact exists
Check that a cache artifact with the given `hash` exists. This request returns response headers only and is equivalent to a `GET` request to this endpoint where the response contains no body. Implementers should return 200 if the artifact exists, or 404 if it does not.
Authorization
bearerToken Bearer token authentication. Pass your authentication token in the Authorization header as Bearer <token>.
For self-hosted implementations, the token format and validation logic is up to the implementer. Common approaches include:
- Static tokens for simple setups
- JWT tokens for stateless authentication
- OAuth2 tokens for integration with identity providers
In: header
Path Parameters
The artifact hash. This is a content-addressable hash that uniquely identifies the cached artifact based on task inputs.
^[a-fA-F0-9]+$1 <= lengthQuery Parameters
The team identifier to perform the request on behalf of. Used for multi-tenant cache implementations where artifacts are scoped to teams.
The team slug to perform the request on behalf of. Alternative to teamId for identifying the team.
Response Body
application/json
application/json
application/json
application/json
curl -X HEAD "https://localhost:3000/artifacts/string"{
"code": "string",
"message": "string"
}{
"code": "string",
"message": "string"
}{
"code": "string",
"message": "string"
}{
"code": "string",
"message": "string"
}