GET
/
api
/
app
/
{environment}
/
{index}
/
config
curl --request GET \
  --url http://localhost:3000/api/app/{environment}/{index}/config
{
  "app": {
    "index": 123,
    "name": "<string>"
  },
  "api": {
    "name": "<string>",
    "version": "<string>"
  },
  "environment": {
    "name": "<string>",
    "explorer": "<string>",
    "cluster": {
      "endpoint": "<string>",
      "id": "<string>",
      "name": "<string>",
      "type": "Custom"
    }
  },
  "mint": {
    "addMemo": true,
    "airdrop": true,
    "airdropAmount": 123,
    "airdropMax": 123,
    "decimals": 123,
    "feePayer": "<string>",
    "logoUrl": "<string>",
    "name": "<string>",
    "programId": "<string>",
    "publicKey": "<string>",
    "symbol": "<string>"
  },
  "mints": [
    {
      "addMemo": true,
      "airdrop": true,
      "airdropAmount": 123,
      "airdropMax": 123,
      "decimals": 123,
      "feePayer": "<string>",
      "logoUrl": "<string>",
      "name": "<string>",
      "programId": "<string>",
      "publicKey": "<string>",
      "symbol": "<string>"
    }
  ]
}

Path Parameters

environment
string
required
index
integer
required

Response

default - application/json

The response is of type object.