Skip to main content
GET
/
token-launch
/
feed
Get token launch feed
curl --request GET \
  --url https://public-api-v2.bags.fm/api/v1/token-launch/feed \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "response": [
    {
      "name": "<string>",
      "symbol": "<string>",
      "description": "<string>",
      "image": "<string>",
      "tokenMint": "<string>",
      "status": "PRE_LAUNCH",
      "twitter": "<string>",
      "website": "<string>",
      "launchSignature": "<string>",
      "accountKeys": [
        "<string>"
      ],
      "numRequiredSigners": 123,
      "uri": "<string>",
      "dbcPoolKey": "<string>",
      "dbcConfigKey": "<string>"
    }
  ]
}

Authorizations

x-api-key
string
header
required

API key authentication. Provide your API key as the header value.

Response

Successfully retrieved token launch feed

success
boolean
required
Example:

true

response
object[]