> ## Documentation Index
> Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Vendor Profile

> Retrieve a vendor's custom profile fields

## Overview

Returns the vendor's custom profile field values. Profile fields are defined at the shop level (see [Get Shop Profile Fields](/api-reference/endpoint/get-shop-profile)) and populated per vendor.

### Use Cases

* **Display vendor details** (company name, tax ID, bank info) on a custom vendor directory
* **Export vendor profiles** for compliance or onboarding audits
* **Integrate profile data** into invoicing or accounting systems

## Path Parameters

<ParamField path="vendorId" type="string" required>
  The vendor's unique ID.
</ParamField>

## Response

```json 200 theme={null}
[
  { "field": "companyName", "value": "Acme Corp" },
  { "field": "taxId", "value": "GB123456789" },
  { "field": "phone", "value": "+44 20 7946 0958" }
]
```

## Example

```bash theme={null}
curl -X GET "https://api.puppetvendors.com/v1/vendors/6157faecbebcf01bf49097d9/profile" \
  -H "x-access-token: YOUR_JWT_TOKEN"
```
