Skip to main content
POST
/
api
/
techmeme
/
stories
/
search
/techmeme/stories/search
curl --request POST \
  --url https://api.anysite.io/api/techmeme/stories/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300,
  "with_media": false
}
'
[
  {
    "headline": "<string>",
    "@type": "TechmemeSearchResult",
    "permalink_id": "<string>",
    "source": "<string>",
    "author": "<string>",
    "url": "<string>",
    "summary": "<string>",
    "image": "<string>",
    "permalink_url": "<string>",
    "published_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
count
integer
required

Max number of results

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
with_media
boolean
default:false

Prioritize stories that include media (images)

Response

Successful Response

headline
string
required
@type
string
default:TechmemeSearchResult
source
string | null
author
string | null
url
string | null
summary
string | null
image
string | null
published_at
string | null