EUDR - Customers - Suppliers

Search for supplier sites (max results: 100)

Search for supplier sites by a free-text query. Only site-type suppliers are returned. The query must be at least 3 characters long. The maximum number of results is limited to 100. If the query is too short or no matching supplier type is found, an error is returned.

Use Cases:

  • Search for suppliers by name or identifier
  • Find supplier sites for product associations
  • Discover available suppliers

Required permission: access_public_products

get/public/v2/eudr/customers/suppliers/search

Query parameters

querystring required

The search string (minimum 3 characters). Used to match supplier names or other identifying information.

Response

List of supplier sites matching the search criteria.

idinteger required

Supplier ID

namestring required

Supplier name

locationstring nullable

Supplier location

isPublicboolean required

Indicates if the supplier profile is public

Example response

[
  {
    "id": 101,
    "name": "Acme Corp",
    "location": "Vienna",
    "isPublic": true,
    "organization": {
      "id": 201,
      "name": "Global Supplies Inc.",
      "location": "New York"
    }
  }
]