API Docs
DocsGithubSupportMeroku Protocol
  • About
  • API reference
    • Dapp
      • DeleteApp
      • Upload
      • Build
      • Rate
      • SearchById
      • Categories
    • Store
      • Featured
        • Dapps
      • DeleteStore
      • BannedDapps
      • Dapp
      • Title
        • /
    • App
      • Installed
      • InstallUrl
    • O
      • View
      • Download
    • Domainverification
      • GetVerificationId
      • Verify
    • Api
      • V1
        • Dapp
          • Search
          • Autocomplete
  • Specification
  • SDK
    • NodeJS
  • ../Meroku Docs
Powered by GitBook
On this page
  1. API reference
  2. Api
  3. V1
  4. Dapp

Search

PreviousDappNextAutocomplete

Last updated 2 years ago

Search Dapps

get

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.

Query parameters
pageintegerOptional

Current page

limitintegerOptional

Page size

orderBystringOptional

Want to get dapp by order(asc, desc) by one or more params.

Example: ["name:asc","name:desc","rating:asc","rating:desc","installs:asc","installs:desc","visits:asc","visits:desc","listDate:asc","listDate:desc"]
searchstringOptional

A string to be used for search. The search happens on the name and tags fields of the dApp. If this is not present, all dApps are returned.

isListedbooleanOptional

DApp is listed or not

Example: true
languagestringOptional

DApp's language

Example: en
chainIdintegerOptional

DApp supported chainId's. Only dApps belonging to this chainID will be returned.

Example: 137
allowedInCountriesstring[]Optional

dApp allowed countries

blockedInCountriesstring[]Optional

dApp blocked countries

matureForAudiencebooleanOptional

Mentions if the app is for all ages or only mature audience

Example: false
minAgeintegerOptional

Minimum age

Example: 13
listedOnOrAfterstring · dateOptional

The date dApp was listed on or after. Date should be in ISO format.

Example: 2021-11-13
listedOnOrBeforestring · dateOptional

The date dApp was listed on or before. Date should be in ISO format.

Example: 2021-11-13
Responses
200
successful operation
application/json
400
Invalid status value
get
GET /api/v1/dapp/search HTTP/1.1
Host: api-a.meroku.store
Accept: */*
{
  "status": 200,
  "message": [
    "success"
  ],
  "page": 1,
  "limit": 20,
  "pageCount": 20,
  "data": []
}

Search DApp By Dapp Id

get
Path parameters
dappIdstringRequired
Responses
200
successful operation
application/json
get
GET /api/v1/dapp/search/{dappId} HTTP/1.1
Host: api-a.meroku.store
Accept: */*
200

successful operation

{
  "status": 200,
  "message": [
    "success"
  ],
  "data": []
}
  • GETSearch Dapps
  • GETSearch DApp By Dapp Id