Skip to main content
POST
/
rpc
/
Metadata
/
SearchContracts
SearchContracts
curl --request POST \
  --url https://metadata.sequence.app/rpc/Metadata/SearchContracts \
  --header 'Content-Type: application/json' \
  --header 'X-Access-Key: <api-key>' \
  --data '
{
  "q": "<string>",
  "chainID": "<string>",
  "chainIDs": [
    "<string>"
  ],
  "types": [
    "UNKNOWN"
  ],
  "page": {
    "page": 123,
    "column": "<string>",
    "before": {},
    "after": {},
    "pageSize": 123,
    "more": true
  }
}
'
{
  "contractInfo": [
    {
      "chainId": 123,
      "address": "<string>",
      "name": "<string>",
      "type": "<string>",
      "symbol": "<string>",
      "logoURI": "<string>",
      "deployed": true,
      "bytecodeHash": "<string>",
      "extensions": {
        "link": "<string>",
        "description": "<string>",
        "categories": [
          "<string>"
        ],
        "ogImage": "<string>",
        "ogName": "<string>",
        "originChainId": 123,
        "originAddress": "<string>",
        "blacklist": true,
        "verified": true,
        "verifiedBy": "<string>",
        "featured": true
      },
      "contentHash": 123,
      "updatedAt": "<string>",
      "notFound": true,
      "status": "NOT_AVAILABLE",
      "decimals": 123,
      "queuedAt": "<string>"
    }
  ],
  "nextPage": {
    "page": 123,
    "column": "<string>",
    "before": {},
    "after": {},
    "pageSize": 123,
    "more": true
  }
}

Authorizations

X-Access-Key
string
header
required

Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI

Body

application/json
q
string
chainID
string
chainIDs
string[]

[]string

types
enum<string>[]

[]ContractType

Represented as uint16 on the server side

Available options:
UNKNOWN,
ERC20,
ERC721,
ERC1155
page
object

Response

OK

contractInfo
object[]

[]ContractInfo

nextPage
object