Skip to main content
GET
/
viral-posts
Search viral posts (inspiration)
curl --request GET \
  --url https://api.scripe.io/v1/viral-posts \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "content": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "linkedin_post_id": "<string>",
      "content_type": "<string>",
      "post_type": "<string>",
      "metrics": {
        "likes": 123,
        "comments": 123,
        "reactions": {
          "appreciation": 123,
          "empathy": 123,
          "interest": 123,
          "maybe": 123
        },
        "total_engagement": 123,
        "views": 123
      },
      "author": {
        "name": "<string>",
        "slogan": "<string>",
        "profile_url": "<string>"
      }
    }
  ],
  "meta": {
    "query": "<string>",
    "total_found": 123,
    "sort_by": "<string>",
    "language": "<string>",
    "min_engagement": 123,
    "limit": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://apidocs.scripe.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Pass Authorization: Bearer scripe_sk_live_<...> (or scripe_sk_test_<...> for test keys) on every request. Keys are scoped to a single workspace and can be revoked from the Scripe dashboard.

Headers

Scripe-Api-Version
string

Pin the API version. Format YYYY-MM-DD. Omit to receive the currently rolling default. Unknown versions return 400 version_unsupported.

Example:

"2026-08-01"

Query Parameters

projectId
string
required
Example:

"proj_a1b2c3d4e5f6g7h8"

query
string
required

Free-text topic / theme.

Example:

"personal branding for founders"

sortBy
enum<string>
default:relevance
Available options:
relevance,
engagement,
recent
language
enum<string>
Available options:
all,
english,
german
minEngagement
integer
default:100
Required range: x >= 0
limit
integer
default:50

Page size. Default 50, max 200.

Required range: 1 <= x <= 200

Response

Ranked viral posts.

data
object[]
required
meta
object
required