Developer Service

Welcome to Glypher Developer Service documentation

Overview

Glypher Developer Service is open to community developers, allowing you to explore the world of inscriptions across multiple blockchains. You can deploy your own inscribing services, build decentralized applications, develop browsers, and much more using the API.

Getting an API key

To use the APIs, please request an API_KEY from us by opening a ticket in our official discord https://discord.com/invite/DkVAUkHk9r with your project introduction. We will send you with an free-plan API_KEY.

When you obtain the API key, please add it to the request header with the X-API-KEY format as follows:

curl --location --request POST 'developer-data-api.glypher.io/api/v1/data/portfolio/token/get-wallet-balance' \
--header 'X-API-KEY: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--data-raw '{
  "address": "0x000000000006f291b587f39b6960dd32e31400bf",
  "chain": "ETH",
  "limit": 100,
  "offset": 0
}'