# User Social Data

## Get user follower list

#### Method

get

#### Path

/v1/user/follower\_list

#### paramater

* `start`: `integer` offset, default is 0.
* `limit`: `integer` limit size, default is 20, max is 100.

#### Returns

* follower\_list: List of User objects
  * id: string - User address
  * web3\_id: string - The user's unique id in DeBank
  * name: string - Same to web3\_id
  * logo\_url: string - user logo url
  * born\_at: double - user on-chain born time
  * tvf: double - Value of user's followers
* total\_count: int - total follower count

Request

{% tabs %}
{% tab title="Curl" %}

```bash
curl -X 'GET' 'https://api.connect.debank.com/v1/user/follower_list' -H 'accept: application/json' -H 'Authorization: Bearer {Your access_token}'
```

{% endtab %}
{% endtabs %}

Response

```
{
    "follower_list": [
      {
        "id": "0x7a16ff8270133f063aab6c9977183d9e72835428",
        "logo_thumbnail_url": null,
        "logo_url": null,
        "web3_id": "michwill"
        "name": "michwill"
      }
    ],
    "total_count": 838
}
```

## Get user following list

#### Method

get

#### Path

/v1/user/following\_list

#### paramater

* `start`: `integer` offset, default is 0.
* `limit`: `integer` limit size, default is 20, max is 100.

#### Returns

* following\_list: List of User objects
  * id: string - User address
  * web3\_id: string - The user's unique id in DeBank
  * name: string - Same to web3\_id
  * logo\_url: string - user logo url
  * born\_at: double - user on-chain born time
  * tvf: double - Value of user's followers
* total\_count: int - total following count

Request

{% tabs %}
{% tab title="Curl" %}

```bash
curl -X 'GET' 'https://api.connect.debank.com/v1/user/following_list' -H 'accept: application/json' -H 'Authorization: Bearer {Your access_token}'
```

{% endtab %}
{% endtabs %}

Response

```
{
    "following_list": [
      {
        "id": "0x7a16ff8270133f063aab6c9977183d9e72835428",
        "logo_thumbnail_url": null,
        "logo_url": null,
        "web3_id": "michwill"
        "name": "michwill"
      }
    ],
    "total_count": 838
}
```
