# GET All Org Deposits

## Get merchant's incoming transactions

> \# Get merchant's incoming transactions\
> \
> This endpoint retrieves the details about all transactions of a specific merchant based on the provided merchnat's ORGANIZATION\_API\_KEY.\
> \
> \### Request\
> \
> \- Method: GET\
> &#x20;   \
> \- URL: \[<http://localhost:3000/v1/merchant/income-transaction]\\(http://localhost:3000/v1/income-transaction)\\>
> &#x20;   \
> \
> \### Headers\
> \
> \- Authorization: Bearer {{ORGANIZATION\_API\_KEY}}\
> &#x20;   \
> \
> \### Query Params\
> \
> \- limit: number\
> &#x20;   \
> \- offset: number\
> &#x20;   \
> \
> \### Response\
> \
> \- Status: 200 OK\
> &#x20;   \
> \- Content Type: application/json\
> &#x20;   \
> \
> \#### Response Body\
> \
> \`\`\` json\
> {\
> &#x20;   "data": \[\
> &#x20;       {\
> &#x20;           "id": number,\
> &#x20;           "purchaseId": string,\
> &#x20;           "address": string,\
> &#x20;           "blockchain": Enum('ethereum', 'tron', 'binance-smart-chain', 'MATIC'),\
> &#x20;           "assets": \[\
> &#x20;               Enum('USDT', 'USDC', 'ETH', 'MATIC','BNB', 'TRX')\
> &#x20;            ],\
> &#x20;           "hash": string,\
> &#x20;           "amount": number,\
> &#x20;           "sourceaddress": string\
> &#x20;       },\
> &#x20;    ]\
> }\
> \
> &#x20;\`\`\`

````json
{"openapi":"3.0.0","info":{"title":"PSP (Stage)","version":"1.0.0"},"tags":[{"name":"Transaction > Merchant"}],"servers":[{"url":"http://{{base_url}}"}],"security":[{"bearerAuth":[]}],"components":{"securitySchemes":{"bearerAuth":{"type":"http","scheme":"bearer"}}},"paths":{"/v1/merchant/incoming-transaction":{"get":{"tags":["Transaction > Merchant"],"summary":"Get merchant's incoming transactions","description":"# Get merchant's incoming transactions\n\nThis endpoint retrieves the details about all transactions of a specific merchant based on the provided merchnat's ORGANIZATION_API_KEY.\n\n### Request\n\n- Method: GET\n    \n- URL: [http://localhost:3000/v1/merchant/income-transaction](http://localhost:3000/v1/income-transaction)\n    \n\n### Headers\n\n- Authorization: Bearer {{ORGANIZATION_API_KEY}}\n    \n\n### Query Params\n\n- limit: number\n    \n- offset: number\n    \n\n### Response\n\n- Status: 200 OK\n    \n- Content Type: application/json\n    \n\n#### Response Body\n\n``` json\n{\n    \"data\": [\n        {\n            \"id\": number,\n            \"purchaseId\": string,\n            \"address\": string,\n            \"blockchain\": Enum('ethereum', 'tron', 'binance-smart-chain', 'MATIC'),\n            \"assets\": [\n                Enum('USDT', 'USDC', 'ETH', 'MATIC','BNB', 'TRX')\n             ],\n            \"hash\": string,\n            \"amount\": number,\n            \"sourceaddress\": string\n        },\n     ]\n}\n\n ```","parameters":[{"name":"offset","in":"query","schema":{"type":"integer"}},{"name":"limit","in":"query","schema":{"type":"integer"}}],"responses":{"200":{"description":"OK","headers":{"Date":{"schema":{"type":"string"}},"Content-Type":{"schema":{"type":"string"}},"Transfer-Encoding":{"schema":{"type":"string"}},"Connection":{"schema":{"type":"string"}},"Access-Control-Allow-Origin":{"schema":{"type":"string"}},"Strict-Transport-Security":{"schema":{"type":"string"}},"Cf-Cache-Status":{"schema":{"type":"string"}},"Content-Encoding":{"schema":{"type":"string"}},"Server":{"schema":{"type":"string"}},"CF-RAY":{"schema":{"type":"string"}},"alt-svc":{"schema":{"type":"string"}}},"content":{"application/json":{"schema":{"type":"object"}}}}}}}}}
````
