cURL
curl --request GET \ --url https://api.zilodata.com/api/v1/reddit/user/{username}/comments \ --header 'Authorization: Bearer <token>'
{ "comments": [ { "id": "def456", "content": "Great post! Thanks for sharing.", "author": "commenter123", "upvotes": 45, "downvotes": 2, "score": 43, "createdAt": "2023-11-07T05:31:56Z", "replies": "<array>" } ] }
Retrieve comments made by a user
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful response
Show child attributes
"def456"
"Great post! Thanks for sharing."
"commenter123"
45
2
43
Was this page helpful?