Last updated 1 year ago
Get all dApps or search by a keyword. Optionally, filter on specific attributes of the dApp. This API call will get all the dApps or perform a text search.
successful operation
200
1
20
const response = await fetch('https://api-a.meroku.store/api/v1/dapp/search', { method: 'GET', headers: {}, }); const data = await response.json();
{ "status": 200, "message": [ "success" ], "page": 1, "limit": 20, "pageCount": 20, "data": [] }
const response = await fetch('https://api-a.meroku.store/api/v1/dapp/search/{dappId}', { method: 'GET', headers: {}, }); const data = await response.json();
{ "status": 200, "message": [ "success" ], "data": [] }