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
| Name | Type | Description | Required |
|---|---|---|---|
developer | string | Developer account ID or SHAMWARI address | No |
appName | string | Application name to filter by | No |
firstIndex | int | Pagination start | No |
lastIndex | int | Pagination end | No |
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"