Get LinkedIn person comments
Fetch recent public comments made by a LinkedIn person (comments they wrote on other people's posts) by profile URL.
Returns one page at a time. When meta.hasMore is true, request the next page with the same profileUrl, page incremented by 1, and paginationToken set to the value from the previous response.
Recommended client timeout: 90 seconds. Most requests resolve in 2-5 seconds, but set your HTTP client timeout to at least 90 seconds to avoid false timeouts on slower lookups.
Credits
Each successful response deducts 10 credits from your organization. Requests that fail (4xx / 5xx) are not billed.
See the credits documentation for the full rate table.
Authorization
bearerAuth Organization API key (sf_api_… from Integrations → API keys) or a partner OAuth 2.1 access token issued by SnitchFeed (authorization_code + refresh). OAuth tokens must be audience-bound to this API (resource = {apiOrigin}/v1) and carry the route scopes listed per operation.
In: header
Request Body
application/json
TypeScript Definitions
Use the request body type in TypeScript.
Request body for POST /data/linkedin/person/comments.
Public LinkedIn person profile URL, e.g. https://www.linkedin.com/in/janedoe.
1 <= length <= 2048Results page number (1-based). Defaults to 1. Max 100.
1 <= value <= 100Cursor from a previous response's meta.paginationToken. Required for page 2+ when one is returned.
length <= 4096Response Body
application/json
application/json
application/json
application/json
application/json
application/json
curl -X POST "https://example.com/data/linkedin/person/comments" \ -H "Content-Type: application/json" \ -d '{ "profileUrl": "string" }'{ "requestId": "string", "comments": [ { "text": "string", "commentUrl": "string", "postId": "string", "postUrl": "string", "datePosted": "string", "authorName": "string", "authorUrl": "string", "replyCount": 0, "engagement": { "likes": 0 } } ], "meta": { "returnedCount": 0, "page": 1, "paginationToken": "string", "hasMore": true }}Get LinkedIn person posts POST
Fetch recent public posts from a LinkedIn person's profile feed by profile URL. Returns one page at a time. When `meta.hasMore` is true, request the next page with the same `profileUrl`, `page` incremented by 1, and `paginationToken` set to the value from the previous response. > **Recommended client timeout: 90 seconds.** Most requests resolve in 2-5 seconds, but set your HTTP client timeout to at least 90 seconds to avoid false timeouts on slower lookups. ### Credits Each **successful** response deducts **10 credits** from your organization. Requests that fail (4xx / 5xx) are not billed. See the [credits documentation](https://snitchfeed.com/docs/api/credits) for the full rate table.
Search HackerNews POST
Search HackerNews stories and comments (via Algolia's HN index). ### Query syntax `query` supports HN's native search qualifiers in addition to plain keywords: `author:USERNAME` / `by:USERNAME` (filter by author), `story:ID` (filter to one story's items), `points>N` / `points<N`, `comments>N` / `comments<N`, `"exact phrase"`, and `-word` (exclude). A query can be qualifiers-only with no keywords, e.g. `author:pg points>500`. ### Credits Each **successful** response deducts **2 credits** from your organization. Requests that fail (4xx / 5xx) are not billed. See the [credits documentation](https://snitchfeed.com/docs/api/credits) for the full rate table.