> ## 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 My Vendor Address

> Retrieve the authenticated vendor's own address

<Note>
  **V2 Preview** — This endpoint is part of the V2 API preview. Breaking changes may occur.
</Note>

## Overview

Retrieve the authenticated vendor's own business address. Requires a vendor-scoped token.

## Response

```json 200 theme={null}
{
  "success": true,
  "data": {
    "address1": "123 Main St",
    "address2": "Suite 200",
    "city": "Austin",
    "state": "TX",
    "postalCode": "78701",
    "country": "US"
  }
}
```

## Example

```bash theme={null}
curl -X GET "https://staging-api.puppetvendors.com/vendors/me/address" \
  -H "x-access-token: YOUR_VENDOR_JWT"
```
