POST
/api/v1/search-usersSearchSearch Users
Search for Reddit users by username or display name.
Ready to try it?
Create a free account — 30 requests included, no credit card.
Request Parameters
Send as a JSON body in your POST request.
| Parameter | Type | Required |
|---|---|---|
| query | string | Yes |
| limit | number | No |
| after | string | No |
Code Examples
curl
curl -X POST https://subscraper.dev/api/v1/search-users \
-H "Authorization: Bearer sk-your-api-key" \
-H "Content-Type: application/json" \
-d '{
"query": "spez",
"limit": 5
}'Sample Response
{
"users": [
{
"username": "spez",
"id": "1w72",
"karma": {
"post": 15000,
"comment": 120000,
"total": 135000
},
"createdUtc": 1118029560
}
],
"after": "t2_1w72"
}Common Use Cases
- Looking up users by partial matches
- Finding official brand accounts on Reddit
- User discovery for outreach
Credits
Each call to /api/v1/search-users uses 1 credit. Free tier includes 30 credits. View pricing →
Related Tools & Guides
All developer tools →Related Endpoints
Start using /search-users now
Free tier — 30 requests, no credit card required.