# Feed by wallet address

![](https://2592634121-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FT5HLPrqZhkeNGgJP37dC%2Fuploads%2Fq7IKVDvh9LF3StexEe1S%2FScreen%20Shot%202022-07-06%20at%2017.51.00.png?alt=media\&token=7fdfd6bf-a9ca-4604-a428-6698cdb79dd2)

<mark style="color:blue;">`GET`</mark> `https://us-central1-appgregator.cloudfunctions.net/docial/wallet/feed/`

#### Query Parameters

| Name                                               | Type   | Description                                |
| -------------------------------------------------- | ------ | ------------------------------------------ |
| name<mark style="color:red;">\*</mark>             | String | qantor.co.id                               |
| connection\_name<mark style="color:red;">\*</mark> | String | docial-1                                   |
| address<mark style="color:red;">\*</mark>          | String | 0xe44436ac79b3d92631395de6d86568af927c627a |

#### Headers

| Name      | Type   | Description                      |
| --------- | ------ | -------------------------------- |
| x-api-key | String | 43c464439b5507293ba7b315c9875907 |

{% tabs %}
{% tab title="200: OK Success" %}

```javascript
[
    {
        "value": "35000000000000000",
        "firebase_id": "ITb4zPxr5mlwvW1YVVYE",
        "token_name": "Poor Rich Boys",
        "from_address": "0xf3c587a90de0ad18e2a81fe1f5d4a61b766b721b",
        "to_address": "0xe44436ac79b3d92631395de6d86568af927c627a",
        "amount": "1",
        "updatedAt": {
            "_seconds": 1656629963,
            "_nanoseconds": 0
        },
        "token_id": "6185",
        "contract_image_url": "https://lh3.googleusercontent.com/R8mHbHTv-p9GdtEUCkRsN6zUijC-md_mbLxJwcJGVceW3n3MyrLYS__6rM2Gb4JC4-o3qQ5HmKap52nplUb_nTvtEHdFmuZ_5TZ5HQ=s120",
        "id": 3564706,
        "transaction_type": "Single",
        "contract_type": "ERC721",
        "transaction_hash": "0x240e47e5dfd766f4650908a57e2ba200101941d72d44c733b34a27c4256b85ca",
        "block_hash": "0x253f9b15655d6fb0ff860671409bbb09cc6d09f0a644bcc8e9281066589dac86",
        "operator": null,
        "token_address": "0x51cc1078b5972a4371cd6ae2c9b195fd3b103c10",
        "block_number": "15052981",
        "block_timestamp": "2022-06-30T22:58:55.000Z",
        "createdAt": {
            "_seconds": 1656629963,
            "_nanoseconds": 0
        }
    }
]
```

{% endtab %}

{% tab title="400: Bad Request Data not found" %}

```javascript
data not found
```

{% endtab %}
{% endtabs %}

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

```shell
curl --location --request GET 'https://us-central1-appgregator.cloudfunctions.net/docial/wallet/feed?name=qantor.co.id&connection_name=docial-1&address=0xe44436ac79b3d92631395de6d86568af927c627a' \
--header 'x-api-key: 43c464439b5507293ba7b315c9875907'
```

{% endtab %}

{% tab title="NodeJs - Axios" %}

```javascript
var axios = require('axios');

var config = {
  method: 'get',
  url: 'https://us-central1-appgregator.cloudfunctions.net/docial/wallet/feed?name=qantor.co.id&connection_name=docial-1&address=0xe44436ac79b3d92631395de6d86568af927c627a',
  headers: { 
    'x-api-key': '43c464439b5507293ba7b315c9875907'
  }
};

axios(config)
.then(function (response) {
  console.log(JSON.stringify(response.data));
})
.catch(function (error) {
  console.log(error);
});

```

{% endtab %}

{% tab title="PHP - cURL" %}

```php
<?php

$curl = curl_init();

curl_setopt_array($curl, array(
  CURLOPT_URL => 'https://us-central1-appgregator.cloudfunctions.net/docial/wallet/feed?name=qantor.co.id&connection_name=docial-1&address=0xe44436ac79b3d92631395de6d86568af927c627a',
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => '',
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 0,
  CURLOPT_FOLLOWLOCATION => true,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => 'GET',
  CURLOPT_HTTPHEADER => array(
    'x-api-key: 43c464439b5507293ba7b315c9875907'
  ),
));

$response = curl_exec($curl);

curl_close($curl);
echo $response;

```

{% endtab %}
{% endtabs %}
