Zernio
Zernio
API Reference

Reddit Search

Search postsGETGet subreddit feedGET
Dashboard
llms.txtOpenAPI
OverviewPlatformsAPI ReferenceResources
Reddit Search

Search posts

Search Reddit posts using a connected account. Optionally scope to a specific subreddit.


GET
/v1/reddit/search

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication: send your Zernio API key in the Authorization header, prefixed with Bearer.

In: header

Query Parameters

accountId*string
subreddit?string
q*string
restrict_sr?string

Value in

  • "0"
  • "1"
sort?string
Default"new"

Value in

  • "relevance"
  • "hot"
  • "top"
  • "new"
  • "comments"
limit?integer
Rangevalue <= 100
Default25
after?string

Response Body

application/json

application/json

application/json

application/json

application/json

{  "items": [    {      "id": "1abc234",      "fullname": "t3_1abc234",      "title": "How to grow on social media in 2025",      "selftext": "Here are my tips...",      "author": "marketingpro",      "subreddit": "socialmedia",      "url": "https://www.reddit.com/r/socialmedia/comments/1abc234/",      "permalink": "https://www.reddit.com/r/socialmedia/comments/1abc234/how_to_grow/",      "score": 156,      "numComments": 42,      "createdUtc": 1730000000,      "over18": false,      "stickied": false,      "flairText": null,      "isGallery": false    }  ],  "after": "t3_1abc234",  "before": null}
Was this page helpful?

Resolve LinkedIn mention

Converts a LinkedIn profile or company URL to a URN for @mentions in posts. How to use LinkedIn @mentions (2-step workflow): 1. Call this endpoint with the LinkedIn profile/company URL to get the mention URN and format. 2. Embed the returned mentionFormat (e.g. @[Vincent Jong](urn:li:person:xxx)) directly in your post's content field. Example: - Resolve: GET /v1/accounts/{id}/linkedin-mentions?url=linkedin.com/in/vincentjong&displayName=Vincent Jong - Returns: mentionFormat: "@[Vincent Jong](urn:li:person:xxx)" - Use in post content: "Great talk with @[Vincent Jong](urn:li:person:xxx) today!" Important: The mentions array field in POST /v1/posts is stored for reference only and does NOT trigger @mentions on LinkedIn. You must embed the mention format directly in the content text. Requirements: - Person mentions require the LinkedIn account to be admin of at least one organization: both endpoints that resolve a profile URL to a member URN take an organization you administer. Organization mentions (e.g. @Microsoft) have no such requirement. - The two are not scoped alike. peopleTypeahead?q=organizationFollowers only returns that organization's followers; vanityUrl?q=vanityUrlAsOrganization does not, and its resolvable set is opaque. A 404 here does not mean the person is unknown to you or unknown to LinkedIn: a live public profile can 404 with no reason given. - For person mentions to be clickable, the displayName parameter must exactly match the name shown on their LinkedIn profile. - Person mentions DO work when published from personal profiles (the URN only needs to be valid). The limitation is only in the resolution step (URL to URN), not in publishing.

Get subreddit feed

Fetch posts from a subreddit feed. Supports sorting, time filtering, and cursor-based pagination.