# GET /reputation/profile

**Resource:** [Reputation](./reputation.md)  
**Scopes:** `reputation:read`  
**Write operation:** no

Get the company's public Reputation profile (singleton per company). Returns slug, display name, category, branding, overall rating, review/case-study counts, publish state, and settings.

## Request example

```bash
curl https://ucqwijexmjctglmrxlej.supabase.co/functions/v1/api/v1/reputation/profile \
  -H "Authorization: Bearer tp_live_..."
```

## Response example

```json
{
  "data": {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "company_id": "ebeff86e-7b09-4e49-96db-f711d69d2d57",
    "slug": "acme-agency",
    "display_name": "Acme Agency",
    "tagline": "B2B marketing for SaaS founders",
    "overall_rating": 4.8,
    "total_reviews": 12,
    "total_case_studies": 3,
    "is_published": true,
    "created_at": "2026-01-01T00:00:00.000Z",
    "updated_at": "2026-04-24T00:00:00.000Z"
  },
  "meta": { "credits_remaining": 4500 }
}
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`