# socialProfileViews

Query

List saved Social Profile views for the current workspace, ordered by most-recently-updated first. Returns at most 1000 rows; this field is not paginated.

Available to agents as MCP tool `getSocialProfileViews` — see [Read tools](/api/v2/docs/mcp/read-tools#get-social-profile-views).

## Arguments

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `filter` | [`SocialProfileViewFilterInput`](/api/v2/docs/types/social-profile-view-filter-input) | No | `{}` | Optional filter criteria. When omitted or empty, returns the current workspace's social-profile views. |

## Returns

Returns [`[SocialProfileView!]!`](/api/v2/docs/types/social-profile-view).

## Examples

### List social profile views

Return the workspace's saved Social Profile views.

```graphql
query SocialProfileViewsDefault {
  socialProfileViews {
    id
    name
    filters
    sort
    showReportingStats
    createdAt
    updatedAt
  }
}
```

Response — HTTP 200:

```json
{
  "data": {
    "socialProfileViews": [
      {
        "id": "6f36548f-6fec-5322-96e7-8ae179b96c04",
        "name": "Northwind Creators Directory",
        "filters": {},
        "sort": [],
        "showReportingStats": true,
        "createdAt": "2024-12-31T19:00:00Z",
        "updatedAt": "2024-12-31T19:00:00Z"
      }
    ]
  }
}
```
