Skip to content
Przemysław Rekucki edited this page Mar 24, 2022 · 2 revisions

REST API for Thorg

GET /meta/hash/da39a3ee5e6b4b0d3255bfef95601890afd80709
{
  "shortName": "Drugs on Golem",
  "icon": "/icon/0x111222.png",
  "homePage": "https://drugs-on.golem.network",
  "developer": "Golem Factory"
}

REST API for App

GET /api/projects?offset=5&limit=10
[
{
  "id": 100
  "shortName": "Drugs on Golem",
  "icon": "/icon/0x111222.png",
  "homePage": "https://drugs-on.golem.network",
  "developer": "Golem Factory",
  "images": ["..."]
}
]
POST /api/projects

{
  "shortName": "Drugs on Golem",
  "icon": "/icon/0x111222.png",
  "homePage": "https://drugs-on.golem.network",
  "developer": "Golem Factory",
  "images": ["..."]
}
201 CREATED
Location: /api/projects/101

...
PATH /api/projects/101

{
"homePage": "https://drugs-on.golem.network/2",
"add-image": [..],
"del-image": [..]
}
PATCH /api/projects/101

{
"del-image": [..]
}
DELETE /api/projects/101
POST /icon
Content-type: application/octet-stream
...
...

201 CREATED
Location: /icon/0x32333232
Clone this wiki locally