> For the complete documentation index, see [llms.txt](https://docs.anoncoin.it/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.anoncoin.it/apis/my-profile-api.md).

# My Profile

> 🚧 **Coming Soon** - This endpoint is not yet live.

> 🔑 **Authentication required.** See [API Key](/apis/api-key.md) 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

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

***

## Response

```json
{
    "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.
