Posts
Get Post Walls
Retrieve the list of walls for a specific account.
Retrieve the list of walls for a creator's account. Walls are used to organize posts into categories.
https://v1.apifansly.com
GET
/api/fansly/{accountId}/posts/walls
Get Started
All requests to the Fansly API require an API Key. See the Authentication page for details.
Path Parameters
accountId*
stringThe unique identifier for the account.
curl -X GET "https://v1.apifansly.com/api/fansly/{accountId}/posts/walls" \
-H "x-api-key: YOUR_API_KEY"fetch("https://v1.apifansly.com/api/fansly/{accountId}/posts/walls", {
method: "GET",
headers: {
"x-api-key": "YOUR_API_KEY"
}
})import requests
url = "https://v1.apifansly.com/api/fansly/{accountId}/posts/walls"
headers = {"x-api-key": "YOUR_API_KEY"}
response = requests.get(url, headers=headers)
print(response.json())import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
HttpClient client = HttpClient.newHttpClient();
HttpRequest request = HttpRequest.newBuilder()
.uri(URI.create("https://v1.apifansly.com/api/fansly/{accountId}/posts/walls"))
.header("x-api-key", "YOUR_API_KEY")
.GET()
.build();
client.sendAsync(request, HttpResponse.BodyHandlers.ofString())
.thenApply(HttpResponse::body)
.thenAccept(System.out::println)
.join();using System.Net.Http;
var client = new HttpClient();
client.DefaultRequestHeaders.Add("x-api-key", "YOUR_API_KEY");
var response = await client.GetAsync("https://v1.apifansly.com/api/fansly/{accountId}/posts/walls");
var responseString = await response.Content.ReadAsStringAsync();
Console.WriteLine(responseString);package main
import (
"fmt"
"io/ioutil"
"net/http"
)
func main() {
url := "https://v1.apifansly.com/api/fansly/{accountId}/posts/walls"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Set("x-api-key", "YOUR_API_KEY")
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := ioutil.ReadAll(resp.Body)
fmt.Println(string(body))
}Response
{
"statusCode": 200,
"message": "Success",
"data": {
"status_code": 200,
"data": {
"accountId": "86540xxxxxxxxxxxxxx",
"walls": [
{
"id": "86819xxxxxxxxxxxxxx",
"accountId": "86540xxxxxxxxxxxxxx",
"pos": 1,
"name": "Posts",
"description": "",
"private": 0,
"metadata": "",
"mainWall": true
},
{
"id": "87551xxxxxxxxxxxxxx",
"accountId": "86540xxxxxxxxxxxxxx",
"pos": 0,
"name": "wall_name",
"description": "",
"private": 0,
"metadata": "",
"defaultWall": true
}
]
}
},
"timestamp": "2026-02-04T22:50:06.307Z"
}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 |
ββ accountId | string | The ID of the account |
ββ walls | array | List of content walls |
ββ id | string | Unique identifier for the wall |
ββ name | string | Display name of the wall |
ββ description | string | Description of the wall |
ββ pos | number | Display position/order |
ββ private | number | Privacy setting flag |
ββ mainWall | boolean | (Optional) Whether this is the main wall |
ββ defaultWall | boolean | (Optional) Whether this is the default wall |
timestamp | string | ISO 8601 response timestamp |