You may ready to make use of the Superior Medium API that I developed as follows:
There are 5 forms of requests. you could possibly be capable to get all of the responses through the use of HTTP GET
methodology.
Medium feed in JSON
You may capable of get the RSS feed of the final 10 Medium posts through the use of the next hyperlinks (change your username as a substitute of @username
).
medium.com/feed/@username
or
username.medium.com/feed
The next request of the API offers the direct JSON conversion of that RSS Feed.
curl https://advanced-medium-api.herokuapp.com/medium/consumer/{userId}
Medium Superior Knowledge
You may capable of get the Medium feed in JSON with the lacking a part of the Medium feed equivalent to clapCount
, voterCount
, responseCount
, readingTime
. every lacking knowledge injected in each submit(objects) object.
The next request of the API offers the JSON conversion of the RSS feed with the injection of lacking knowledge.
curl https://advanced-medium-api.herokuapp.com/superior/consumer/{userId}
Medium Custom-made Knowledge
JSON conversion of the Medium RSS feed is custom-made based on the classes. Order the Medium submit’s tags based on their use depend among the many newest 10 posts and the tagOrder
return that tags’ order rank. Medium’s newest 10 posts had been divided by 3 and each 3 posts had been pushed in an array and people arrays had been pushed in a single array. There’s an algorithm that returns essentially the most appropriate tag for the Medium submit among the many different tags of that Medium submit.
The next request of the API offers the custom-made model of the Medium feed in JSON
curl https://advanced-medium-api.herokuapp.com/custom-made/consumer/{userId}
Medium Custom-made Superior Knowledge
This response accommodates the Medium custom-made knowledge with the injection of lacking stats equivalent to clapCount
, voterCount
, responseCount
, readingTime
.
The next request of the API offers the custom-made model of the Medium feed in JSON with the lacking a part of the Medium feed.
curl https://advanced-medium-api.herokuapp.com/superior/custom-made/consumer/{userId}
Lacking knowledge of a specific submit.
This response accommodates solely the lacking half (clapCount
, voterCount
, responseCount
, readingTime
) of Medium feed for a specific Medium submit.
Request 💻 ➡ 🌎 :
curl https://advanced-medium-api.herokuapp.com/medium/submit/{postId}
Response 🌎➡💻 :
{
"clapCount": 98,
"responseCount": 4,
"voterCount": 12,
"readingTime": 4
}