Skip to main content
POST
/
api
/
techmeme
/
stories
/techmeme/stories
curl --request POST \
  --url https://api.anysite.io/api/techmeme/stories \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "story": "<string>",
  "timeout": 300
}
'
[
  {
    "permalink_id": "<string>",
    "headline": "<string>",
    "@type": "TechmemeStory",
    "source": "<string>",
    "author": "<string>",
    "url": "<string>",
    "summary": "<string>",
    "image": "<string>",
    "permalink_url": "<string>",
    "published_date": "<string>",
    "twitter_url": "<string>",
    "threads_url": "<string>",
    "bluesky_url": "<string>",
    "mastodon_url": "<string>",
    "related_coverage": [],
    "tweets": [],
    "bluesky": [],
    "mastodon": [],
    "forums": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
story
string
required

Techmeme story permalink: full URL, path or bare id

Minimum string length: 1
Examples:

"https://www.techmeme.com/260625/p24"

"260625/p24"

"260625p24"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

headline
string
required
@type
string
default:TechmemeStory
source
string | null
author
string | null
url
string | null
summary
string | null
image
string | null
published_date
string | null
twitter_url
string | null
threads_url
string | null
bluesky_url
string | null
mastodon_url
string | null
tweets
object[]
bluesky
object[]
mastodon
object[]
forums
object[]