Skip to main content
GET
/
api
/
v1
/
publications
/
search
Search publications, newsletters, podcasts, and authors.
curl --request GET \
  --url https://dripstack.xyz/api/v1/publications/search
{
  "query": "macro",
  "count": 2,
  "items": [
    {
      "publicationSlug": "macro-compass",
      "title": "The Macro Compass",
      "author": "Alfonso Peccatiello",
      "siteUrl": "https://macro-compass.com"
    },
    {
      "publicationSlug": "macrohive",
      "title": "Macro Hive",
      "author": "Macro Hive",
      "siteUrl": "https://macrohive.com"
    }
  ]
}

Query Parameters

q
string
required

Publication, author, podcast show, newsletter, slug, or site query.

Minimum string length: 2

Response

Top publication matches.

query
string
required

Original search query.

count
integer
required

Number of matches returned (max 3).

Required range: 0 <= x <= 3
items
object[]
required

Top publication matches.

Maximum array length: 3