Good APIs Vs Bad APIs: 7 Tips for API Design

  Рет қаралды 189,360

ByteByteGo

ByteByteGo

Күн бұрын

Get a Free System Design PDF with 158 pages by subscribing to our weekly newsletter: bit.ly/bytebytegoytTopic
This video is based on engineering blog post: blog.hotstar.com/capturing-a-...
Animation tools: Adobe Illustrator and After Effects.
Checkout our bestselling System Design Interview books:
Volume 1: amzn.to/3Ou7gkd
Volume 2: amzn.to/3HqGozy
The digital version of System Design Interview books: bit.ly/3mlDSk9
ABOUT US:
Covering topics and trends in large-scale system design, from the authors of the best-selling System Design Interview series.

Пікірлер: 82
@deefdragon
@deefdragon 3 ай бұрын
Comment regarding pagination vs cursoring. Pagination grants MUCH more flexability when consuming data, and a well built pagination endpoint also need not necessarily be slow. Cursor based will often force the consumer to go through everything to get a specific piece of data. A well built or poorly built implementation in **either case** can cause issues and slowdown.
@yung-yuchen1219
@yung-yuchen1219 3 ай бұрын
I was just asked about the idempotancy of different methods during the interview! Well explained!
@RidvanGER
@RidvanGER 3 ай бұрын
As always very well explained, thank you!
@henrythomas7112
@henrythomas7112 2 ай бұрын
Great video! Some key points were highlighted that I hadn't heard anyone else discuss. Thank you!
@cherubin7th
@cherubin7th 3 ай бұрын
Thank you this was super useful!
@MrRobeezy29
@MrRobeezy29 Ай бұрын
These visuals are so fantastic. Love your videos and subscribed.
@sago27
@sago27 3 ай бұрын
Thank you for such an informative video.
@llight1635
@llight1635 Ай бұрын
this is helpful! Thanks!
@reprogrammingmind
@reprogrammingmind 3 ай бұрын
Very clean explanation.
@user-js3tp6pr4z
@user-js3tp6pr4z 3 ай бұрын
Big fan of your book sir. I am new to Architecture. 🙌
@sylvereleipertz955
@sylvereleipertz955 3 ай бұрын
I will add that these are great advices when you are building a public api. If you are building an api that is basically a backend for a single frontend, you can go easy on these standards and build what you actually needs instead of following blindly the norm.
@vitvitvitvitvitvitvitvit
@vitvitvitvitvitvitvitvit 2 ай бұрын
agree
@jacob_90s
@jacob_90s 3 ай бұрын
Two other tips I want to add regarding Documentation. 1) Make sure you have good, language agnostic documentation. Most API's provide libraries for common programming languages which is great, but there are a lot of languages out there and you can't come up with libraries for all of them, or for future languages. My recommendation is to first write you language agnostic documentation, and then you write your libraries using that documentation, and if there's some information you need that's not in that documentation, then update it. 2) Existing documentation doesn't mean you can be lazy. I work with a lot of FHIR based API's, and despite the fact they all supposedly follow the same standard, there are always a thousand small differences and changes, and very few of them are listed in the vendor's documentation. Remember: Good documentation is an investment. It means less support work for you or your staff, and it means your customers are able to use your API faster, which means they start paying you faster. Bad documentation makes it more difficult for people to use your API, which means they're more likely to give up or look for an easier to use alternative. Rule of thumb for good documentation: If you are the person who is intimately familiar with the API, and you look at the documentation and think "Yeah, that's good enough", no it's not, it's shit. Good documentation should be specific, should be redundant, should have examples. Good documentation, when you the developer of the API, look at it, should make you say: "Do we really need this much detail? Surely it's too much?"
@simply3065
@simply3065 6 күн бұрын
Ah man, feel sorry for you, FHIR is a total disaster
@JaLikon65
@JaLikon65 2 ай бұрын
Thank you @ByteByteGo ! I think this might be one of your best videos yet, you packed so much useful knowledge into this one, Thank you!
@stea27
@stea27 3 ай бұрын
Really great tips and ideas. And +1 good documentation about authentication methods and possible entities and their fields with its types are a major plus.
@nikhilgoyal007
@nikhilgoyal007 2 ай бұрын
wonderful, thanks a ton!
@maxgrand2k
@maxgrand2k 2 ай бұрын
Thanks for the video. But I am curious, what tools did you use to create your own diagrams and animations in this video?
@fipabrate
@fipabrate 3 ай бұрын
Another indication to apply the fifth suggestion is that when you share a link with those parameters, the recipient will also have it sorted just as you did.
@TrendytechGit
@TrendytechGit 3 ай бұрын
Good presentation , May i know what tool you are using to presentation
@srimanitejachinnam8297
@srimanitejachinnam8297 3 ай бұрын
00:01 Crafting effective, secure RESTful APIs 00:45 Ensure reliability through idempotent APIs 01:32 Use versioning to introduce new API versions without impacting current consumers 02:13 Versioning for backward compatibility 02:56 Use clear query strings for sorting and filtering API data 03:41 Security should not be an afterthought in API design 04:22 Clear linking and direct paths improve API usability 05:06 Good APIs protect infrastructure and encourage fair use
@davestorm6718
@davestorm6718 3 ай бұрын
Thanks! I was guilty of not using headers for keys. Great point that keys would be in url logs.
@raj_kundalia
@raj_kundalia 2 ай бұрын
thank you!
@hoyinleunghk
@hoyinleunghk 3 ай бұрын
thank you
@atibhiagrawal6460
@atibhiagrawal6460 18 күн бұрын
The top 7 tips: 1) Use clear naming. 2) Ensure reliability through idempotency. 3) Add versioning for backward compatibility. 4) Add pagination for response. 5) Use clear query strings for sorting. 6) Security should not be an afterthought. Use api-headers for passing in tokens. 7) Keep cross-resource references simple. 8) Rate limiting
@zenluiz
@zenluiz 2 ай бұрын
What would you recommend when the type of parameter in a query (usually GET) is an array with no limits? Let’s say an array of GUIDs. Having a GET endpoint would make it hard to read by humans (since every item is “concatenated” using the same key) and could potentially have issues with URL length (although more and more modern browsers don’t have so much limitation but there could be network devices in between that could still have length limitations). In such cases I have been using PUT, with the array of items being passed in the request body.
@lukehjo
@lukehjo 3 ай бұрын
Awesome.
@gus473
@gus473 3 ай бұрын
:55 Yes! Another good video, thanks! 😎✌️
@jj-big-slay-yo
@jj-big-slay-yo Ай бұрын
Versioning can be also done using headers. Custom, like x-version-api, or use an existing one. Or even query string params (not the best way, but still).
@odeholon4590
@odeholon4590 22 күн бұрын
Do not use get for filteting as it is impractical, instead use a /list or /filter endpoint and post a complex filter object, yielding you result set. In practice in bizz apps filters/sorts ars very complex and it is unusabld via query params. Example: POST /doctor/list ...json filter object. You can get an object by canonjcal id, but filtering for a list if object representations is much better done via special list resource.
@Ali2307013
@Ali2307013 Ай бұрын
In regards to idempotancy, curious to know your opinion for when the API is requesting live data and the response keeps changing every second.
@nicksrub
@nicksrub 3 ай бұрын
url in your about section to blog is broken
@endaksi_channel
@endaksi_channel 3 ай бұрын
Versioning hell is great!
@everni8711
@everni8711 3 ай бұрын
awesome
@ColinRichardson
@ColinRichardson 3 ай бұрын
I was hoping you would say something that makes me totally rethink of making an API.. Sadly, (or happily) I already knew these techniques.. Only slight difference is the usage of a header to do versioning, rather than url based.. I got that trick from github.. but to be honest I am on the fence if I like path based or not.. Path based is easier to understand from a OpenApi spec document.. Choices Choices...
@da40au40
@da40au40 3 ай бұрын
versioning on the header level is interesting, never thought of that. i might want to try it as it will relief me from messy url's and makes documentation more easier 🎉🎉
@AshNit-kq2gf
@AshNit-kq2gf 2 ай бұрын
Nice tips, APIs were definitely not my strong suit before!
@aocongtuan3914
@aocongtuan3914 2 ай бұрын
you seem happy in this video =)), talk faster than usual
@AdityaRoshan-fm4wt
@AdityaRoshan-fm4wt 2 ай бұрын
Great
@BellBiker
@BellBiker 3 ай бұрын
FWIW - Headers often work better for versioning rather than embedding that info in the URL.
@dexvt1862
@dexvt1862 3 ай бұрын
Tip 1 should be replaced with consistency. Plural or singular, but stick to the choice made. I'd argue "cart/122" is more elegant than "carts/123". If our pattern is cart/, then carts/123 deals with one cart, so singular would make more sense. Consider "cart/" with no id as the list of carts.
@nicdgonzalez
@nicdgonzalez 3 ай бұрын
I disagree. cart alone is misleading. It may read better when you add a cart number to it, but it doesn't make sense for what it actually does. A "GET /cart/123" might make sense if you're reading it literally. But what do you suspect doing "GET /cart" returns? I would assume it gives me just 1 cart, but it should actually give me a list of all carts (otherwise why do would you need an ID if there weren't any other carts?)
@zxenon_
@zxenon_ 3 ай бұрын
​@@nicdgonzalez🥚xactly
@hackenbacker
@hackenbacker 2 ай бұрын
#5 vs #7 How about `/users/sort_by/registered` ?
@my_yt666
@my_yt666 3 ай бұрын
How about versioning per endpoint?
@dandogamer
@dandogamer 3 ай бұрын
Yeah I tend to go for the /carts/v1 approach tbh
@zshn
@zshn 3 ай бұрын
Few more: Standardize your API response. Return proper error codes and messages.
@joachimdietl6737
@joachimdietl6737 3 ай бұрын
When does it come to secure APIs? I watched the half of the video, but not a word about safety
@danilomenoli
@danilomenoli 3 ай бұрын
Do POST need to be idempotent????
@md.imamulislam7
@md.imamulislam7 3 ай бұрын
No. That's why PUT exists
@kakkoiij
@kakkoiij 3 ай бұрын
No comments on Level1 - 3 and HATEOAS?
@NiranjanNanda
@NiranjanNanda 3 ай бұрын
Versioning is such a controversial topic in API design. As a matter of fact, on a lighter note, REST is controversial to begin with. 😀
@salaarkalki
@salaarkalki 2 ай бұрын
IOT sir chadastham valla ochinollaki swagatham suswagatham
@saivaishnavthota1075
@saivaishnavthota1075 2 ай бұрын
who is here after raghava sir message
@rithwick4446
@rithwick4446 2 ай бұрын
Me...
@sidekick3rida
@sidekick3rida Ай бұрын
This channel needs subtitles.
@je_suis_onur
@je_suis_onur 3 ай бұрын
Actually get methods are not favored at all for fetching items. POST is typically used. Take a look at KZbin's API calls and you'll see. The reason is, a) it is inherently less secure to have the filtering, querying params in the URL, which can give away PII. b) Post methods can provide these methods in the body and hence provide more granularity for search parameters. It is possible to cache POST method results too but it requires a bit more diligence.
@hoomodance
@hoomodance 2 ай бұрын
Yeah and the api as used by the youtube website is pretty much incomprehensible whereas the actual youtube data api for third party developers never uses POST requests for fetching data.
@joachimdietl6737
@joachimdietl6737 3 ай бұрын
rate limiting does not help against ddos attacks. What content is this?
@MK-lh3xd
@MK-lh3xd 2 ай бұрын
Would you mind elaborating?
@Typnickman-
@Typnickman- 3 ай бұрын
Regarding tip #1.. If we have products endpoint I would like to make product/:id instead of products/:id. /products will be list of products and if you want one you do /product/:id. Cart is not a good example since cart is one per user so it can be without id. Just validate user token to get user id😊
@khangle6872
@khangle6872 2 ай бұрын
/product/:id is not restful
@kklowd
@kklowd 3 ай бұрын
15 inches 😧
@anghathe2177
@anghathe2177 3 ай бұрын
In tips 2: why PUT idempotence yes, but patch no Thank u
@anand.prasad502
@anand.prasad502 3 ай бұрын
PUT means updating all the fields in an entry, PATCH means updating selective fields in an entry
@DerAuskennfuchs
@DerAuskennfuchs 3 ай бұрын
PUT is only idempotent when no optimistic lock mechanism like a version-property is used. In real world examples you should use an optimistic lock to prevent race conditions. When two users load the same resource and edit them the first user runs the PUT to update the resource. Afterwards the second users also updates the resource with his changes, but the data, which will be updated is not the data he has loaded before, because the changes of the first user were already applied. This could lead to inconsistency or loosing information. When using optimistic lock, the second user gets an error (normally HTTP status 409 conflict) that the resource was already changed by the first user. And this also implies that running the same request twice, the second request will fail because of version mismatch.
@VipinSharma-tj6zm
@VipinSharma-tj6zm 2 ай бұрын
Patch can be used to add an item to an array, calling it multiple times would add multiple items. Put would overwrite the same items everytime.
@sreevidyar9425
@sreevidyar9425 3 ай бұрын
The video was fantastic, packed with insightful content about APIs. I do have a suggestion, though: perhaps consider having a junior native speaker read out your scripts. This could make the presentation more catchy, allowing you to dedicate more time to content creation and research.
@theeraphatsunthornwit6266
@theeraphatsunthornwit6266 7 күн бұрын
Lol i misread the title as Effective Sale API
@vladimir0rus
@vladimir0rus 3 ай бұрын
Too fast and hard to understand.
@FinlayDaG33k
@FinlayDaG33k 2 ай бұрын
I do disagree with the first tip for exactly the reason mentioned. Plurals would imply I'm dealing with a collection (== multiple) carts, not a single cart. In the example given, however, I'm only dealing with a single cart (the cart with ID 123), so I think singular ("/cart/:id") would be better. It it was to get multiple carts (eg. 123 and 456), then yes, plurals would make more sense (eg. "/card/123,456").
@pennyether8433
@pennyether8433 3 ай бұрын
Personally, as a developer I'd rather have nearly everything be in a query string than to have to codify building out separate URLs for each use case.
@ericjbowman1708
@ericjbowman1708 2 ай бұрын
Please don't version your API in your URI allocation scheme, it's bad practice. What version of an API is agreed on between client and server doesn't need to be advertised in an URL. It's an API -- the underlying implementation may change, but the interface doesn't. If /v1/cart changes to /v2/carts, well, why the version?
@RohitYadav-cu5sh
@RohitYadav-cu5sh 2 ай бұрын
Well the interfaces do change. I work in fintech space and here is the basic example: In v1: payment mode: net banking Bank name: Bank of America In v2: payment mode: NB Bank name: BOA Note: there are many keys changes in the payload this is just the subset Here, internally the functionality is same as we are making the payment but interfaces is changing In practice: all our existing customers who are using v1 keep using v1, all the new customers are being onboarded with v2 version. I have integrated many banks apis in our application and all uses version in their url.
@ericjbowman1708
@ericjbowman1708 2 ай бұрын
@@RohitYadav-cu5sh All your example is changing, is the payload i.e. the message entity. Use different Content-Types, or if xml, a different schema. But the URIs shouldn't change. There's a detrimental effect on cache behavior when you're creating multiple URI aliases for the same resource.
@ericjbowman1708
@ericjbowman1708 2 ай бұрын
I know everyone does it and calls it REST, but Roy Fielding has written and lectured against API versioning in the URI allocation scheme, as a fundamental misunderstanding of the architectural style.
@ericjbowman1708
@ericjbowman1708 2 ай бұрын
The "Accept" header is your friend. Let's say the data format is changed from application/xml to application/json. Deprecated (v1) URI's will only Accept: application/xml. New URI's will only Accept: application/json. URI's which have not changed between versions will Accept: application/json, application/xml -- in that order. You seem to have a custom media type, version that. Then a client is free to use whichever API version works for their application, even both, and this is all transparent (i.e. self-descriptive messaging) in HEAD requests. See Dr. Fielding's thesis for all the explanations of why API versioning is best done by versioning media types, i.e. application/{vnd.apiv1.json|vnd.apiv2.json}, you'll be a better developer for it even if you continue to give the "corporate" REST API answer in job interviews conducted by those who only know buzzword REST.
@Implicitdefcncdragneel
@Implicitdefcncdragneel Ай бұрын
U missed the backwards compatibility. Every version should support backwards compatibility.
@jonathanchow3401
@jonathanchow3401 2 ай бұрын
plain generic info...
@user-rw2yt8rh8x
@user-rw2yt8rh8x Ай бұрын
accent is tricky to understand please talk slow
@VeeWebCode
@VeeWebCode 3 ай бұрын
Love your videos.
@TsArtemi
@TsArtemi 17 күн бұрын
personally I do not like plurals into API...🥸
Top 7 Ways to 10x Your API Performance
6:05
ByteByteGo
Рет қаралды 298 М.
Ad click event aggregation system design
34:47
SE Verse
Рет қаралды 40
Зу-зу Күлпәш. Тайм аут. (3-бөлім)
43:54
ASTANATV Movie
Рет қаралды 418 М.
Mini Jelly Cake 🎂
00:50
Mr. Clabik
Рет қаралды 16 МЛН
[Vowel]물고기는 물에서 살아야 해🐟🤣Fish have to live in the water #funny
00:53
Monolithic vs Microservice Architecture: Which To Use and When?
10:43
Top 12 Tips For API Security
9:47
ByteByteGo
Рет қаралды 56 М.
Deep Dive into REST API Design and Implementation Best Practices
12:02
Software Developer Diaries
Рет қаралды 31 М.
System Design Interview: A Step-By-Step Guide
9:54
ByteByteGo
Рет қаралды 563 М.
API Gateway Explained Quickly
4:23
Connected Cookie
Рет қаралды 6 М.
8 Design Patterns EVERY Developer Should Know
9:47
NeetCode
Рет қаралды 972 М.
How To Choose The Right Database?
6:58
ByteByteGo
Рет қаралды 272 М.
Why is JWT popular?
5:14
ByteByteGo
Рет қаралды 249 М.
10 Coding Principles Explained in 5 Minutes
5:44
ByteByteGo
Рет қаралды 69 М.
So You Think You Know Git - FOSDEM 2024
47:00
GitButler
Рет қаралды 910 М.
Which Phone Unlock Code Will You Choose? 🤔️
0:14
Game9bit
Рет қаралды 5 МЛН
Any Sound & Call Recording Option Amazing Keypad Mobile 📱
0:48
Tech Official
Рет қаралды 325 М.
Пленка или защитное стекло: что лучше?
0:52
Слава 100пудово!
Рет қаралды 1,4 МЛН
Как открыть дверь в Jaecoo J8? Удобно?🤔😊
0:27
Суворкин Сергей
Рет қаралды 1,1 МЛН
Creepy Samsung Alarm cannot be turned off 😱🤣 #shorts
0:14
Adani Family
Рет қаралды 1,5 МЛН