Skip to main content
POST
/
api
/
techmeme
/
authors
/techmeme/authors
curl --request POST \
  --url https://api.anysite.io/api/techmeme/authors \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "board": "leadership"
}
'
[
  {
    "rank": 123,
    "name": "<string>",
    "@type": "TechmemeAuthor",
    "twitter_url": "<string>",
    "handle": "<string>",
    "score": "<string>",
    "top_publication": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of authors to return

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

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
board
enum<string>
default:leadership

Leaderboard to rank by

Available options:
leadership,
presence

Response

Successful Response

rank
integer
required
name
string
required
@type
string
default:TechmemeAuthor
twitter_url
string | null
handle
string | null
score
string | null
top_publication
string | null