Get Liking Users
documentedRetrieve users who liked a specific post.
GET /2/tweets/{id}/liking_usersLikesno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
# Source: X API v2 Get Liking Users docs (https://docs.x.com/x-api/users/get-liking-users)
#
# Get a list of users who liked a specific Tweet
npx -y keychains@latest curl "https://api.x.com/2/tweets/{{$id}}/liking_users?user.fields={{$user_fields}}&max_results={{$max_results}}" \
-X GET \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Accept: application/json" \
-H "Content-Type: application/json"