TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What is the best example of api documentation you know?

12 pointsby sootnalmost 11 years ago
I am researching documentation for api's. What makes a good documentation? What sections and articles are interesting for new and old users etc? Do you have any favorite documentation and why? Thanks

9 comments

murtzaalmost 11 years ago
Twilio, Stripe, Parse, Sendgrid, Mailgun are examples of companies with good documentation.<p>Generally, I like to see a high-level overview of the API, authentication scheme, endpoints, sample request and response, error code explanations, and sample code coverage in multiple languages. I wrote a blog post on this topic:<p><a href="http://murtza.org/creating-a-great-developer-experience/" rel="nofollow">http:&#x2F;&#x2F;murtza.org&#x2F;creating-a-great-developer-experience&#x2F;</a>
评论 #7841813 未加载
评论 #7843996 未加载
ukaalmost 11 years ago
I like stripe-s documentation for their REST API<p><a href="https://stripe.com/docs/api" rel="nofollow">https:&#x2F;&#x2F;stripe.com&#x2F;docs&#x2F;api</a><p>curl examples are the thing that impress me the most ...
vhfalmost 11 years ago
Take a look at beautiful docs[0]<p>[0] <a href="https://github.com/PharkMillups/beautiful-docs" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;PharkMillups&#x2F;beautiful-docs</a>
doug1001almost 11 years ago
New York Times Article Search API: <a href="http://developer.nytimes.com/docs/read/article_search_api_v2" rel="nofollow">http:&#x2F;&#x2F;developer.nytimes.com&#x2F;docs&#x2F;read&#x2F;article_search_api_v2</a><p>everything a dev might ever want to know about constructing a query, calling this API, and parsing the results--beautifully accessible from this homepage
ndcalmost 11 years ago
Examples examples examples. From the most common use cases to the less common. With annotations and links to the endpoint reference.
krrishdalmost 11 years ago
I don&#x27;t have a favorite company with good documentation, but these two tools have been useful and seem well designed for creating docs: - <a href="http://daux.io" rel="nofollow">http:&#x2F;&#x2F;daux.io</a> - <a href="http://raneto.com" rel="nofollow">http:&#x2F;&#x2F;raneto.com</a>
nardbardalmost 11 years ago
I second the vote for Twilio, adding NPR to the list <a href="http://dev.npr.org/#story-lists-api" rel="nofollow">http:&#x2F;&#x2F;dev.npr.org&#x2F;#story-lists-api</a>
650REDHAIRalmost 11 years ago
Examples, examples, examples.<p>I also love the Google Maps API. They&#x27;re certainly in my top 5 for API documentation.
sootnalmost 11 years ago
Oo this is great everyone! I really like that sexy Stribe documentation. Thank you