TEA Product

Returns a list of TEA products. Note that multiple products may match.

get/products

Query parameters

pageOffsetinteger

Pagination offset

pageSizeinteger

Pagination offset

idType'CPE' | 'TEI' | 'PURL'

Enumeration of identifiers types

Type of identifier specified in the idValue parameter

idValuestring

If present, only the objects with the given identifier value will be returned.

Response

A paginated response containing TEA Products

timestampstring date-time required
pageStartIndexinteger required
pageSizeinteger required
totalResultsinteger required

Example response

{
  "timestamp": "2024-03-20T15:30:00Z",
  "results": [
    {
      "uuid": "09e8c73b-ac45-4475-acac-33e6a7314e6d",
      "name": "Apache Log4j 2",
      "identifiers": [
        {
          "idType": "CPE",
          "idValue": "cpe:2.3:a:apache:log4j"
        },
        {
          "idType": "PURL",
          "idValue": "pkg:maven/org.apache.logging.log4j/log4j-api"
        }
      ]
    }
  ]
}

Changes