Article
/api/article/{article_id} Get Article Info
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| article_id | path | string | Yes | The ID of the Medium article |
Responses
- id string
- title string
- subtitle string
- author_id string
- published_at string
- url string
- claps number
- responses_count number
- reading_time number
- is_saved boolean - Whether the article is saved in any list by the user
- error string
/api/article/{article_id}/assets Get Article's Assets
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| article_id | path | string | Yes | The ID of the Medium article |
Responses
- assets array
- error string
/api/article/{article_id}/content Get Article's Content
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| article_id | path | string | Yes | The ID of the Medium article |
Responses
- id string
- content string
- error string
/api/article/{article_id}/fans Get Article's Fans
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| article_id | path | string | Yes | The ID of the Medium article |
| page | query | number | No |
Responses
- page number
- count number
- fans array
- error string
/api/article/{article_id}/html Get Article's HTML
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| article_id | path | string | Yes | The ID of the Medium article |
Responses
- id string
- html string
- error string
/api/article/{article_id}/markdown Get Article's Markdown
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| article_id | path | string | Yes | The ID of the Medium article |
Responses
- id string
- markdown string
- error string
/api/article/{article_id}/related Get Related Articles
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| article_id | path | string | Yes | The ID of the Medium article |
| page | query | number | No | |
| x-medium-cookie | header | string | No | Optional Medium cookie string forwarded upstream |
| x-medium-frontend-path | header | string | No | Optional Medium frontend path override |
| x-medium-frontend-route | header | string | No | Optional Medium frontend route override |
Responses
- page number
- count number
- articles array
/api/article/{article_id}/responses Get Article's Responses
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
| article_id | path | string | Yes | The ID of the Medium article |
| page | query | number | No |
Responses
- page number
- count number
- responses array
- error string