Direct access
Provider-owned integration
This listing is discovery-only. Calls go straight to the provider and follow the provider's docs and auth model.
Marketplace execution
Disabled
Auth and payment
Provider-defined
Use this listing to discover StableSocial Reddit endpoints for posts, comments, subreddits, and search workflows.
## Access model
This is a discovery-only external API. Calls go directly to the provider; the marketplace does not proxy, authenticate, or settle them.
## Setup
1. Review the provider docs before calling any endpoint.
2. Authenticate directly with the provider as required by the provider.
3. Authenticate directly with StableSocial as required by the provider.
## External Endpoints
### Get Reddit comment details
Method: POST
Direct URL: https://stablesocial.dev/api/reddit/comment
Docs: https://stablesocial.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablesocial.dev/api/reddit/comment" \
-H "Content-Type: application/json" \
-d '{
"comment_id": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Get Reddit post comments
Method: POST
Direct URL: https://stablesocial.dev/api/reddit/post-comments
Docs: https://stablesocial.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablesocial.dev/api/reddit/post-comments" \
-H "Content-Type: application/json" \
-d '{
"post_id": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Get Reddit post details
Method: POST
Direct URL: https://stablesocial.dev/api/reddit/post
Docs: https://stablesocial.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablesocial.dev/api/reddit/post" \
-H "Content-Type: application/json" \
-d '{
"post_id": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Get subreddit posts
Method: POST
Direct URL: https://stablesocial.dev/api/reddit/subreddit
Docs: https://stablesocial.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablesocial.dev/api/reddit/subreddit" \
-H "Content-Type: application/json" \
-d '{
"name": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Search Reddit posts by keyword
Method: POST
Direct URL: https://stablesocial.dev/api/reddit/search
Docs: https://stablesocial.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablesocial.dev/api/reddit/search" \
-H "Content-Type: application/json" \
-d '{
"keywords": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.
### Search Reddit user profiles
Method: POST
Direct URL: https://stablesocial.dev/api/reddit/search-profiles
Docs: https://stablesocial.dev/llms.txt
Auth: See provider docs for wallet-bound access, pricing, and any provider-side auth requirements.
curl -X POST "https://stablesocial.dev/api/reddit/search-profiles" \
-H "Content-Type: application/json" \
-d '{
"keywords": "string"
}'
Fast only lists this provider and its docs; execution happens directly against the provider.Have a request?