Skip to main content

GetApplication

Retrieves details of a specific application by its ID.

Request

GET /nxt?requestType=getApplication

All endpoints use port 22024 by default.

Parameters

NameTypeDescriptionRequired
applicationstringApplication ID (unsigned long)Yes
requireBlockstringBlock ID required for responseNo
requireLastBlockstringLast block ID requiredNo

Response

{
"application": "9876543210123456789",
"developer": "1234567890123456789",
"developerRS": "SHAMWARI-ABCD-EFGH-IJKL-MNOPQ",
"name": "MyApp",
"description": "A great application",
"url": "https://myapp.example.com",
"category": "Utility",
"platforms": "Web,Mobile",
"release": "1.0.0",
"repository": "https://github.com/myapp",
"timestamp": 1700000000,
"errorCode": 0,
"errorDescription": ""
}

Example

curl "http://localhost:22024/nxt?requestType=getApplication&application=9876543210123456789"