# Retrieving SSI, performance

This page describes how to create workflows for retrieving your current [SSI](/guides/linkedin-social-selling-index) and performance analytics from your [LinkedIn dashboard](https://www.linkedin.com/dashboard/).

## Retrieving current SSI

To retrieve your current SSI, you need to include [`st.retrieveSSI`](/docs/action-st-retrieve-ssi) action in your workflow. Here's an example:

**Workflow:**

```json
{
  "actionType": "st.retrieveSSI"
}
```

**Completion:**

```json
{
  "actionType": "st.retrieveSSI",
  "success": true,
  "data": {
    "ssi": 78,
    "industryTop": 15,
    "networkTop": 10
  }
}
```

## Retrieving performance

To retrieve performance analytics from your [LinkedIn dashboard](https://www.linkedin.com/dashboard/), you need to include [`st.retrievePerformance`](/docs/action-st-retrieve-performance) action in your workflow. Here's an example:

**Workflow:**

```json
{
  "actionType": "st.retrievePerformance"
}
```

**Completion:**

```json
{
  "actionType": "st.retrievePerformance",
  "success": true,
  "data": {
    "followersCount": 1250,
    "postViewsLast7Days": 523,
    "profileViewsLast90Days": 342,
    "searchAppearancesPreviousWeek": 89
  }
}
```

> This page provides examples of [workflows](/docs/building-workflows) and their [completions](/docs/executing-workflows). For detailed documentation on constraints, parameters, and possible results of specific actions, always refer to the corresponding [action documentation pages](/docs/actions-overview).
