OnlyFans API
Post comments

Unlike Post Comment

Unlike a comment on one of your posts.

DELETE
/api/{account}/posts/{post_id}/comments/{comment_id}/like
AuthorizationBearer <token>

You can retrieve your token by visiting the OnlyFansAPI Console and clicking API Keys -> Create API Key.

In: header

Path Parameters

accountstring

The Account ID

post_idinteger

The ID of the post to which the comment belongs.

comment_idinteger

The ID of the comment to like.

Response Body

curl -X DELETE "https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/posts/123/comments/123/like"
fetch("https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/posts/123/comments/123/like")
package main

import (
  "fmt"
  "net/http"
  "io/ioutil"
)

func main() {
  url := "https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/posts/123/comments/123/like"

  req, _ := http.NewRequest("DELETE", url, nil)
  
  res, _ := http.DefaultClient.Do(req)
  defer res.Body.Close()
  body, _ := ioutil.ReadAll(res.Body)

  fmt.Println(res)
  fmt.Println(string(body))
}
import requests

url = "https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/posts/123/comments/123/like"

response = requests.request("DELETE", url)

print(response.text)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.http.HttpResponse.BodyHandlers;
import java.time.Duration;

HttpClient client = HttpClient.newBuilder()
  .connectTimeout(Duration.ofSeconds(10))
  .build();

HttpRequest.Builder requestBuilder = HttpRequest.newBuilder()
  .uri(URI.create("https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/posts/123/comments/123/like"))
  .DELETE()
  .build();

try {
  HttpResponse<String> response = client.send(requestBuilder.build(), BodyHandlers.ofString());
  System.out.println("Status code: " + response.statusCode());
  System.out.println("Response body: " + response.body());
} catch (Exception e) {
  e.printStackTrace();
}
using System;
using System.Net.Http;
using System.Text;

var client = new HttpClient();
var response = await client.DeleteAsync("https://app.onlyfansapi.com/api/acct_XXXXXXXXXXXXXXX/posts/123/comments/123/like");
var responseBody = await response.Content.ReadAsStringAsync();
{
  "data": {
    "success": true,
    "isLiked": false,
    "likesCount": 1
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 999999862,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 1000,
      "limit_day": 50000,
      "remaining_minute": 999,
      "remaining_day": 49869
    }
  }
}