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>",
        "headline": "<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>",
    "date_range": {
      "from": "<string>",
      "to": "<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
required

Path Parameters

id
string
required

Search ID

Example:

"search_abc123xyz"

Query Parameters

from
string

Start date (ISO 8601), e.g., 2025-01-20

to
string

End date (ISO 8601), e.g., 2025-01-26

sources
string

Filter by source: linkedin,twitter,reddit (comma-separated)

limit
number
default:50

Max results (default 50, max 500)

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

Pagination cursor

sort
enum<string>
default:newest

Sort order

Available options:
newest,
oldest,
engagement

Response

200 - application/json

Search results

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