My Profile

🚧 Coming Soon - This endpoint is not yet live.

🔑 Authentication required. See API Key for setup and rate limits.

GET /services/v2/my-profile

Returns your profile information and a list of coins you've created.

GET https://api.anoncoin.it/services/v2/my-profile

Example Request

curl --location 'https://api.anoncoin.it/services/v2/my-profile' \
  --header 'x-api-key: YOUR_API_KEY'

Response

{
    "devWalletAddress": "EPBmgCVSiX6oWGym5TfmpkDsEHPgnhsD6Vk2ek38BUNW",
    "userName": "38BUNW",
    "profileImageUrl": "https://cdn.anoncoin.it/.../profile-image.png",
    "coinsCreated": [
        {
            "mint": "D25bi7oHQjqkVrzbfuM6k2gzVNHTSpBLhtakDCzCCDUB"
        }
    ]
}

Response Fields

  • devWalletAddress : Your Solana wallet address.

  • userName : Your Anoncoin username.

  • profileImageUrl : Your profile image URL.

  • coinsCreated : Array of coins you've created.

    • mint : Solana token mint address of the created coin.

Last updated

Was this helpful?