Remove the source user’s like from a tweet. Proxies the official X v2 unlike-post endpoint through the AIsa gateway.
DELETE /2/users/{id}/likes/{tweet_id} endpoint, exposed through the AIsa gateway at https://api.aisa.one/apis/v1/twitter/unlike_twitter. AIsa uses POST for consistency with the other Twitter write endpoints.
POST /apis/v1/twitter/auth_twitter — AIsa stores the session against your API key and uses it automatically on every write call.like.write, tweet.read, users.read.| Field | Type | Meaning |
|---|---|---|
data.liked | boolean | false once the like has been removed. Returned as false even if the source user hadn’t liked the tweet to begin with — unlike is idempotent. |
200 with { "data": { "liked": false } }. Safe to retry.
400 invalid-request — missing or non-numeric tweet_id403 client-forbidden — OAuth session missing the like.write scope. Re-link via auth_twitter.404 resource-not-found — tweet doesn’t exist or isn’t visible to the source user.Your AIsa API key. The authenticated source user (the account doing the follow) is determined by the OAuth session attached to your key.
Numeric ID of the tweet to unlike. Must match X's regex ^[0-9]{1,19}$.
^[0-9]{1,19}$"1346889436626259968"
Unlike succeeded (or the source user hadn't liked the tweet to begin with).