Social Media
Reddit Post
Fetch a full Reddit post with its threaded comments — title, author, subreddit, body, score, and nested replies — as JSON. Costs 2 credits per request.
POST/api/v1/reddit/post
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonurlstringrequiredThe Reddit post URL.
Example: https://www.reddit.com/r/...
sortenum<string>Comment sort order (e.g. top, new, best).
Request
from scavio import ScavioClient
client = ScavioClient(api_key="sk_live_your_key")
results = client.reddit.post(url="https://www.reddit.com/r/Studentcorner/comments/1uljw6a/examplify_exam_help_examplify_bypass_cheat_on/")
print(results)Response
},
"response_time": 7037,
"credits_used": 2,
"credits_remaining": 4751
}