Home > Back-end >  How to request GET method in specific url using Postman?
How to request GET method in specific url using Postman?

Time:01-25

I want to get some results using Postman.

expected result :

{
    "status": "200",
    "message": "success",
    "results": {
        "count": "6816",
        "data": [
            {
                "timestamp": "2022-07-17T10:47:03Z",
                "sender": "0x2F664960a7FBdaDA8e133DbAF1Bfc27DCCBADBfb",
                "receiver": "0xA68A135Ccd37E720000fC30CFcc453b15F8040df",
                "value": "0",
                "status": "1",
                "message": "",
                "transaction_hash": "0x1a03528eecf165678d7fbcb9ceeee45a98b02f10a5ce30236ef29ee5b3747c84",
                "block_number": "2472",
                "contract_address": null,
                "trace_address": [
                    "0",
                    "1",
                    "1"
                ],
                "trace_type": "staticcall",
                "sub_traces": null,
                "transaction_index": "0",
                "gas_used": "2715",
                "gas_limit": "29039032",
                "external_receiver": "0",
                "input": "0x0d2020dd476f7665726e616e6365436f6e74726163740000000000000000000000000000"
            },
            ...
        ]
    }
}

When I request GET Method for example,

API Docs : enter image description here

CodePudding user response:

In addition to Khalil's answer - to do the same in python you could do the following:

import requests

headers = {'api-key': '1ba5e446edf1997f67b51bf9e60b3fbba6fa1bf84301115292805d7e24f43539'}
response = requests.get('https://explorerapi.test.wemix.com/v1/accounts/0xA68A135Ccd37E720000fC30CFcc453b15F8040df/internal-transactions', headers=headers)
print(response)                                                             

<Response [200]> which will get you the data that you desire.

The API Key that was provided had RESPONSE DATA at the end which was invalid as the API key.

  • Related