Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Principles of Awesome APIs and How to Build Them.
Search
Keavy McMinn
November 18, 2019
Programming
125
17k
Principles of Awesome APIs and How to Build Them.
Keavy McMinn
November 18, 2019
Tweet
Share
More Decks by Keavy McMinn
See All by Keavy McMinn
Improving your workflow with the GitHub API
keavy
9
760
The Successful Shipper
keavy
8
400
Integrations
keavy
3
530
How to mend a broken identity
keavy
0
170
Better work, through better feedback.
keavy
1
390
Internal Tools
keavy
9
1.5k
Must. Try. Harder.
keavy
0
390
Career Health Check
keavy
0
250
From Artist To Programmer
keavy
1
360
Other Decks in Programming
See All in Programming
グローバルなソフトウェアテスト組織における課題と戦略 / Challenges and Strategies in a Global Software Testing Organization #mf_techday
imtnd
0
210
Micro Frontends for Java Microservices - dev2next 2024
mraible
PRO
0
150
Composing an API the *right* way (Droidcon New York 2024)
zsmb
2
530
AWS Lambda Web Adapterを活用する新しいサーバーレスの実装パターン
tmokmss
6
5.2k
ROS 2のZenoh対応とZenohのROS 2対応
takasehideki
2
220
Findy - エンジニア向け会社紹介 / Findy Letter for Engineers
findyinc
4
93k
Micro Frontends Unmasked: Opportunities, Challenges, Alternatives
manfredsteyer
PRO
0
250
モジュラモノリス、その前に / Modular monolith, before that
euglena1215
1
150
Iteratorでページネーションを実現する
sonatard
3
690
標準ライブラリの動向とイテレータのパフォーマンス
makki_d
3
180
宿泊予約サイトにおける検索と料金計算の両立
skaji
1
210
なぜアジャイルがうまくいかないのか?
yum3
2
140
Featured
See All Featured
What's in a price? How to price your products and services
michaelherold
243
11k
A Modern Web Designer's Workflow
chriscoyier
692
190k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
227
52k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
26
1.3k
Practical Orchestrator
shlominoach
185
10k
Done Done
chrislema
180
16k
From Idea to $5000 a Month in 5 Months
shpigford
380
46k
Atom: Resistance is Futile
akmur
261
25k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
2
210
What the flash - Photography Introduction
edds
67
11k
The Invisible Side of Design
smashingmag
296
50k
What’s in a name? Adding method to the madness
productmarketing
PRO
22
3.1k
Transcript
Principles of Awesome APIs and How to Build Them. Keavy
McMinn, Fastly RubyConf 2019 @keavy
None
None
None
Try to work with the wind, don't fight it all
the time.
Consistent. Stable. Well-documented.
APIs: Our experience as consumers
APIs: Our experience as producers
APIs: Our experience as producers Fixing it would actually break
it.
APIs: Our experience as producers
Application Programming Interface
None
APIs = Constraints
Work with the constraints.
Remember these constraints are good for us too.
None
None
None
Consistent
Consistent Consistent data
✅ { "admin": true } ❌ { "admin": "1" }
API Descriptions — JSON Schema — Open API (formerly Swagger)
— RAML — APIs.json — API Blueprint — Postman Collections — Async API
Consistent Have one source of truth.
Have one source of truth. JSON Schema
JSON Schema committee gem https://github.com/interagent/committee
JSON Schema PRMD gem https://github.com/interagent/prmd
JSON Schema Online examples http://bit.ly/heroku-schema
It will be amaaazing!
Consistent Monitor your inconsistencies.
Monitor your inconsistencies. Compare what you say and what you
do.
Monitor your inconsistencies. Try a portion of your API
Monitor your inconsistencies. Technical deep dive
Monitor your inconsistencies. Technical deep dive https://github.com/whitequark/parser
# Get a dog. get "/dogs/:dog_id" do authorize_access :users, :bots
# finds the dog # renders the dog as JSON end
Then it will be amaaazing!
Stable
Stable Invest in upfront design.
Invest in upfront design. — What will users do with
it? — What does your business need from it? — What does it look like? — What will you call it?
Remember: puppies APIs are for life not just for Christmas!
https://www.flickr.com/photos/27587002@N07/5170590074
Design while the cost of change is low.
Stable A calm space.
metoffice.gov.uk
Stable
Change itself is not necessarily bad. Negative impact from change
is bad.
Minimize the negative impact
Well-documented
Well-documented Inform users about everything, early and often
Well-documented Then remember that people don’t read.
Well-documented Enable a holistic view. — Endpoints that are undocumented
— Endpoints that are in any special phase — Anything to be deprecated — Dates
Well-documented Governance
Well-documented Shared understanding is easier when it’s all written down.
Well-documented Internal guides
Well-documented API Styleguide
API Styleguide Avoid verbs and adjectives ❌ GET /pets/most-recent ✅
GET /pets?sort=date-added
API Styleguide Make exceptions deliberately GET /repos/:owner/:repo/releases/latest
Well-documented Internal guides
Well-documented Who is responsible for what?
Well-documented Who gets a say in decision making?
It doesn’t have to be fucking hard. It just has
to be consistent. Which is fucking hard. — Brett Sutton, Triathlon coach
Good luck! Thank you, @keavy