Search

Search Currencies

Get currencies having a code that matches a given query in reverse relevance order.

Method: GET

https://ardr.nownodes.io/nxt?requestType=searchCurrencies&query=PTNT?

Example response: 200

{
    "requestProcessingTime": 27,
    "currencies": []
}

Search Polls

Search for poll details given a name/description query string.

Method: GET

https://ardr.nownodes.io/nxt?requestType=searchPolls&chain=2&query=hello&includeFinished=true

Example response: 200

{
    "polls": [
        {
            "minRangeValue": 0,
            "votingModel": 0,
            "description": "HELLO WORLD",
            "finished": true,
            "poll": "15782508803332293630",
            "minNumberOfOptions": 1,
            "holding": "13666697367314031635",
            "minBalance": "1",
            "accountRS": "ARDOR-D7VC-BSEV-SPKC-DJZ39",
            "name": "Best Fruit",
            "options": [
                "Apple",
                "Banana",
                "Pear",
                "Orange",
                "Strawberry",
                "Watermelon"
            ],
            "finishHeight": 297467,
            "maxNumberOfOptions": 1,
            "minBalanceModel": 2,
            "account": "12936572672874485610",
            "maxRangeValue": 1,
            "timestamp": 17651519
        }
    ],
    "requestProcessingTime": 19
}

Last updated