Account
Get Current Account
Get Fansly Profile details for the currently used Account.
Get fansly Profile details for the currently used Account.
https://v1.apifansly.com
GET
/api/fansly/{account_id}/me
Get Started
All requests to the Fansly API require an API Key. See the Authentication page for details.
Path Parameters
accountId*
stringThe ID of the connected Fansly account.
Authentication
curl -X GET "https://v1.apifansly.com/api/fansly/fansly_acc_123/me" \
-H "x-api-key: YOUR_API_KEY"fetch("https://v1.apifansly.com/api/fansly/fansly_acc_123/me", {
method: "GET",
headers: {
"x-api-key": "YOUR_API_KEY"
}
})import requests
url = "https://v1.apifansly.com/api/fansly/fansly_acc_123/me"
headers = {"x-api-key": "YOUR_API_KEY"}
response = requests.get(url, headers=headers)
print(response.json())Response
{
"statusCode": 200,
"message": "Success",
"data": {
"status_code": 200,
"data": {
"success": true,
"response": {
"account": {
"id": "86540xxxxxxxxxxxxxx",
"email": "***********y@g****.com",
"username": "creator_handle",
"displayName": null,
"flags": 18,
"version": 3,
"createdAt": 1767823687000,
"followCount": 4,
"about": "Hi I'm Nancy...",
"timelineStats": {
"imageCount": 53,
"videoCount": 1,
"bundleCount": 1
},
"subscriptionTiers": [
{
"id": "87011xxxxxxxxxxxxxx",
"name": "Subscription",
"price": 5000,
"plans": [
{
"billingCycle": 30,
"price": 5000
}
]
}
],
"walls": [
{
"id": "86819xxxxxxxxxxxxxx",
"name": "Posts",
"defaultWall": true
}
],
"avatar": {
"id": "86540xxxxxxxxxxxxxx",
"mimetype": "image/jpeg",
"location": "/86540.../86540....jpeg"
}
}
}
}
},
"timestamp": "2026-02-04T17:50:53.954Z"
}Response Body
| Field | Type | Description |
|---|---|---|
statusCode | number | The HTTP status code (200) |
message | string | Result message |
data | object | Main response container |
ββ status_code | number | Internal Fansly status code |
ββ data | object | Nested data container |
ββ response | object | Data payload |
ββ account | object | Detailed account information |
ββ id | string | Unique identifier for the account |
ββ email | string | Masked email address |
ββ username | string | The account handle |
ββ about | string | Profile bio/description |
ββ followCount | number | Total followers |
ββ subscriptionTiers | array | List of available subscription tiers |
ββ walls | array | Content walls/feeds configured for the account |
ββ timelineStats | object | Media counts (images, videos, bundles) |
ββ avatar | object | Profile picture metadata |
timestamp | string | ISO 8601 response timestamp |