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

> Retrieve the vendor's storefront profile grouped by portal tabs

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

## Overview

Retrieve the authenticated vendor's profile settings grouped by portal tabs: `information`, `socialMedia`, `contactInfo`, `policies`, `vacation`, and `others`. Vendor scope required.

## Response

```json 200 theme={null}
{
  "success": true,
  "data": {
    "information": {
      "description": "Handmade artisan products",
      "businessAddress": {
        "address1": "123 Main St",
        "city": "Austin",
        "state": "TX",
        "postalCode": "78701",
        "country": "US"
      }
    },
    "socialMedia": {
      "instagram": "myshop",
      "website": "example.com"
    },
    "contactInfo": {
      "email": "vendor@example.com",
      "phone": "+15555550123"
    },
    "policies": {
      "shippingPolicy": "Ships in 2 business days",
      "returnsPolicy": "30-day return policy"
    },
    "vacation": {
      "enabled": false
    },
    "others": {
      "hasTax": true,
      "vendorTaxRate": 8.25
    }
  }
}
```

## Example

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