API Reference
Get an article
Returns one article the authenticated account owns, including its generated summary parts and extracted body text. A non-existent or foreign id returns 404.
Authorization
BearerApiKey AuthorizationBearer <token>
A Shorty API key, sent as Authorization: Bearer <key>. An OAuth 2.1 access token issued to a connected app is also accepted on the same header.
In: header
Path Parameters
articleId*string
Length
1 <= lengthResponse Body
application/json
application/json
application/json
application/json
application/json
application/json
application/json
curl -X GET "https://example.com/v1/articles/string"{ "id": "string", "title": "string", "description": "string", "article_type": "string", "source_url": "string", "created_at": "string", "summary": { "parts": [ { "title": "string", "content": "string" } ] }, "body_text": "string"}