> ## 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 Profile

> Retrieve the authenticated vendor's own profile

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

## Overview

Retrieve the authenticated vendor's own profile. Requires a vendor-scoped token. Equivalent to `GET /v2/vendors/{vendorId}/profile` but scoped automatically to the token's vendor — no path parameter required.

## Response

```json 200 theme={null}
{
  "success": true,
  "data": {
    "_id": "507f1f77bcf86cd799439011",
    "vendorId": "507f1f77bcf86cd799439012",
    "information": {
      "description": "Handmade artisan products",
      "businessAddress": {
        "address1": "123 Main St",
        "city": "Austin",
        "state": "TX",
        "postalCode": "78701",
        "country": "US"
      }
    },
    "socialMedia": { "instagram": "myshop" },
    "contactInfo": { "email": "vendor@example.com" },
    "policies": { "shippingPolicy": "Ships in 2 business days" }
  }
}
```

## Example

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