LinkedIn Post Search (retired)
Retired. The upstream data provider withdrew LinkedIn post search, so this endpoint now always returns HTTP 410 and is never billed. There is no replacement for post search. To read a known post, use POST /api/v1/linkedin/post.
POST/api/v1/linkedin/search/posts
Authorizations
AuthorizationstringheaderrequiredBearer authentication header of the form Bearer <token>, where <token> is your Scavio API key (e.g. Bearer sk_live_your_key).
Body
application/jsonsearchstringAccepted but ignored; the endpoint always returns 410.
Example: AI agents
Request
curl -X POST 'https://api.scavio.dev/api/v1/linkedin/search/posts' \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer sk_live_your_key' \
-d '{}'
# HTTP/1.1 410 Gone
# {"error":"This endpoint has been retired and is no longer available.",
# "code":"endpoint_retired","reason":"LinkedIn post search was retired by the upstream provider."}Response
"error": "This endpoint has been retired and is no longer available.",
"code": "endpoint_retired",
"reason": "LinkedIn post search was retired by the upstream provider."
}