# socialProfileView

Query

Return a single saved Social Profile view by ID for the current workspace, or null if no such view exists here.

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

## Arguments

| Name | Type | Required | Default | Description |
| --- | --- | --- | --- | --- |
| `id` | `ID!` | Yes | — | FilterPreset UUID of the social profile view to fetch. |

## Returns

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

## Examples

### Get a social profile view by ID

Fetch a single saved Social Profile view by its ID.

```graphql
query SocialProfileViewDefault($id: ID!) {
  socialProfileView(id: $id) {
    id
    name
    filters
    sort
    showReportingStats
    createdAt
    updatedAt
  }
}
```

Variables:

```json
{
  "id": "6f36548f-6fec-5322-96e7-8ae179b96c04"
}
```

Response — HTTP 200:

```json
{
  "data": {
    "socialProfileView": {
      "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"
    }
  }
}
```
