Chat messages
Add Fan to VIP
Add a fan to your VIP list.
This endpoint allows you to add a specific fan to your VIP list. This can be used to filter or prioritize their messages within your chats.
https://v1.apifansly.com/api/fansly
POST
/{account_id}/chats/{fan_id}/vip
Get Started
All requests to the Fansly API require an API Key. See the Authentication page for details.
curl -X POST "https://v1.apifansly.com/api/fansly/{account_id}/chats/{fan_id}/vip" \
-H "x-api-key: YOUR_API_KEY"fetch("https://v1.apifansly.com/api/fansly/{account_id}/chats/{fan_id}/vip", {
method: "POST",
headers: {
"x-api-key": "YOUR_API_KEY"
}
})import requests
url = "https://v1.apifansly.com/api/fansly/{account_id}/chats/{fan_id}/vip"
headers = {
"x-api-key": "YOUR_API_KEY"
}
response = requests.post(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/{account_id}/chats/{fan_id}/vip"))
.header("x-api-key", "YOUR_API_KEY")
.POST(HttpRequest.BodyPublishers.noBody())
.build();
client.sendAsync(request, HttpResponse.BodyHandlers.ofString())
.thenApply(HttpResponse::body)
.thenAccept(System.out::println)
.join();using System.Net.Http;
using System.Threading.Tasks;
var client = new HttpClient();
client.DefaultRequestHeaders.Add("x-api-key", "YOUR_API_KEY");
var response = await client.PostAsync("https://v1.apifansly.com/api/fansly/{account_id}/chats/{fan_id}/vip", null);
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/{account_id}/chats/{fan_id}/vip"
req, _ := http.NewRequest("POST", 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))
}Path Parameters
account_id*
stringThe unique identifier for the connected account.
fan_id*
stringThe unique identifier (userId) of the fan to add to VIP.
Response
{
"statusCode": 201,
"message": "Success",
"data": {
"status_code": 200,
"data": {
"success": true,
"response": {
"accountId": "account_id_string",
"ignoredId": "fan_id_string",
"ignoreFlags": 4
}
}
},
"timestamp": "2026-05-17T14:03:40.079Z"
}Response Body
| Field | Type | Description |
|---|---|---|
statusCode | number | The HTTP status code of the response (e.g., 201) |
message | string | A human-readable message about the result |
data | object | The main response payload |
├─ status_code | number | The internal status code of the Fansly operation |
└─ data | object | Nested data container |
├─ success | boolean | Indicates whether the request was successful |
└─ response | object | Detailed information about the VIP configuration |
├─ accountId | string | The unique identifier of your connected account |
├─ ignoredId | string | The unique identifier of the fan added to VIP |
└─ ignoreFlags | number | The flag value applied (4 represents VIP status) |
timestamp | string | The ISO 8601 timestamp of when the response was generated |