Skip to main content
GET
/
v1
/
searches
/
{id}
/
results
curl -X GET "https://api.trigify.io/v1/searches/search_abc123xyz/results?limit=50" \
  -H "x-api-key: YOUR_API_KEY"
{
  "message": "<string>",
  "success": true,
  "data": [
    {
      "id": "<string>",
      "source": "<string>",
      "author": {
        "name": "<string>",
        "username": "<string>",
        "profile_url": "<string>",
        "followers": 123,
        "avatar": "<string>"
      },
      "content": {
        "text": "<string>",
        "url": "<string>",
        "media": [
          "<string>"
        ]
      },
      "engagement": {
        "likes": 123,
        "comments": 123,
        "shares": 123
      },
      "published_at": "<string>",
      "collected_at": "<string>"
    }
  ],
  "pagination": {
    "has_more": true,
    "next_cursor": "<string>",
    "total_count": 123
  },
  "meta": {
    "search_id": "<string>",
    "from": "<string>"
  }
}
Fetch the collected results from a social listening search.

Overview

The Get Search Results endpoint returns the content collected by your search, including posts, authors, engagement metrics, and timestamps. Results can be filtered by date and paginated.

Authentication

Requires a valid API key with the searches:results:read permission.

Key Features

  • Rich Content Data: Full post content, author info, and engagement metrics
  • Date Filtering: Filter results by date range
  • Cursor Pagination: Efficiently page through large result sets
  • No Credit Cost: Results from existing searches are free to fetch
curl -X GET "https://api.trigify.io/v1/searches/search_abc123xyz/results?limit=50" \
  -H "x-api-key: YOUR_API_KEY"

Path Parameters

ParameterTypeDescription
idstringThe unique search ID

Query Parameters

ParameterTypeDefaultDescription
limitinteger50Number of results per page (max 500)
cursorstring-Pagination cursor
fromstring-Filter to posts created after this date (ISO 8601 format, e.g., 2025-01-20)

Response Structure

Each result includes:
FieldDescription
idUnique result identifier
sourcePlatform (linkedin, twitter, reddit, etc.)
author.nameAuthor’s display name
author.usernameAuthor’s handle/username
author.profile_urlLink to author’s profile
author.avatarAuthor’s profile image
content.textFull post/comment text
content.urlDirect link to the content
content.mediaArray of media URLs
engagement.likesNumber of likes/reactions
engagement.commentsNumber of comments
published_atWhen the content was posted
collected_atWhen Trigify collected it

Credit Usage

This endpoint is free and does not consume credits. You’ve already paid for the search when it was created.

Use Cases

  • Export to CRM: Push results to Salesforce, HubSpot, etc.
  • Data Analysis: Analyze sentiment and trends
  • Alerting: Build real-time notification workflows
  • Reporting: Generate reports on social mentions

Headers

x-api-key
string

Path Parameters

id
string
required

Search ID

Example:

"search_abc123xyz"

Query Parameters

from
string

Filter to posts created after this date (ISO 8601)

limit
number
default:50

Max results (default 50, max 100)

Required range: 1 <= x <= 100
cursor
string

Pagination cursor

job_title
string

Filter by job title (case-insensitive substring match, LinkedIn only)

company
string

Filter by company name (case-insensitive substring match, LinkedIn only)

industry
string

Filter by industry (case-insensitive substring match, LinkedIn only)

country
string

Filter by country (case-insensitive substring match, LinkedIn only)

seniority
string

Filter by seniority level e.g. 'director', 'vp', 'c_suite' (case-insensitive, LinkedIn only)

Response

200 - application/json

Search results

message
string
required
success
boolean
required
data
object[]
required
pagination
object
required
meta
object
required