Skip to main content

GetApplications

Lists all applications on the Shamwari Network, with optional filtering by developer and app name.

Request

GET /nxt?requestType=getApplications

All endpoints use port 22024 by default.

Parameters

NameTypeDescriptionRequired
developerstringDeveloper account ID or SHAMWARI addressNo
appNamestringApplication name to filter byNo
firstIndexintPagination startNo
lastIndexintPagination endNo

Response

{
"applications": [
{
"application": "9876543210123456789",
"developer": "1234567890123456789",
"developerRS": "SHAMWARI-ABCD-EFGH-IJKL-MNOPQ",
"name": "MyApp",
"description": "A great application",
"timestamp": 1700000000,
"errorCode": 0,
"errorDescription": ""
}
],
"errorCode": 0,
"errorDescription": ""
}

Example

curl "http://localhost:22024/nxt?requestType=getApplications&developer=SHAMWARI-ABCD-EFGH-IJKL-MNOPQ"