v2

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-0171058.4 KB

Endpoint used to get a list of POP (Persistent Organic Pollutant) name codes. It returns a code list on <b>200</b> success or a <b>401</b> on failure.<br><br> Example Request

curl --request GET \--url https://waste-tracking.api.defra.gov.uk/reference-data/pop-names \
--header "authorization": Bearer eyJraWQiOiJQYnJiZXZvYUF5d1NQcG5KUWlsQXVCT1Q4aVdyNUFcL3RaQkZHaTk5TU5CTT0iLCJhbGciOiJSUzI1NiJ9...
get/reference-data/pop-names

Response

A truncated list of POP names obtained using the GET pop-names method<br><br> Success<br><br>

[
{
  "code": "END",
  "chemicalName": "Endosulfan"
},
{
  "code": "HCBD",
  "chemicalName": "Hexachlorobutadiene"
},
{
  "code": "PCNS",
  "chemicalName": "Polychlorinated naphthalenes"
}, ... cont
codestring

The POP name. The full list of valid POP names is returned by the GET pop-names method.

chemicalNamestring

The POP chemical name.

Example response

[
  {
    "code": "END",
    "chemicalName": "Endosulfan"
  }
]