Artifacts

Query information about an artifact

Query information about an array of artifacts.

POST
/v8/artifacts

Authorization

AuthorizationRequiredBearer <token>

Default authentication mechanism

In: header

Request Body

application/jsonOptional
hashesRequiredarray<string>

artifact hashes

Query Parameters

teamIdstring

The Team identifier to perform the request on behalf of.

slugstring

The Team slug to perform the request on behalf of.

curl -X POST "https://api.vercel.com/v8/artifacts?teamId=string&slug=string" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "hashes": [
      "string"
    ]
  }'

{
  "property1": {
    "size": 0,
    "taskDurationMs": 0,
    "tag": "string"
  },
  "property2": {
    "size": 0,
    "taskDurationMs": 0,
    "tag": "string"
  }
}