v1

latestOpenAPI 3.0.02026-07-131612.7 KB

Check multiple eori numbers

This endpoint is used to retrieve a list of validated EORI numbers.

The endpoint will also retrieve the business' company name and address if the business has allowed it.

post/customs/eori/lookup/check-multiple-eori

Request body

eorisstring[] required

The unique identifier, also known as the eori number

Response

eoristring required
validboolean required
processingDatestring required

Example response

[
  {
    "eori": "GB123456789133",
    "valid": true,
    "companyDetails": {
      "traderName": "Aviationstr",
      "address": {
        "streetAndNumber": "141B Halsey Place",
        "cityName": "Huddersfield",
        "postcode": "HD98 2LI"
      }
    },
    "processingDate": "2021-01-05T09:54:08+00:00"
  },
  {
    "eori": "GB123456729136",
    "valid": true,
    "processingDate": "2021-01-05T09:54:08+00:00"
  },
  {
    "eori": "GB8392848394939",
    "valid": false,
    "processingDate": "2021-01-05T09:54:08+00:00"
  }
]
All 1 operations