Good APIs Vs Bad APIs: 7 Tips for API Design

Поделиться
HTML-код
  • Опубликовано: 9 май 2024
  • 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

  • @yung-yuchen1219
    @yung-yuchen1219 3 месяца назад +11

    I was just asked about the idempotancy of different methods during the interview! Well explained!

  • @deefdragon
    @deefdragon 2 месяца назад +23

    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.

  • @henrythomas7112
    @henrythomas7112 2 месяца назад +1

    Great video! Some key points were highlighted that I hadn't heard anyone else discuss. Thank you!

  • @RidvanGER
    @RidvanGER 3 месяца назад +7

    As always very well explained, thank you!

  • @MrRobeezy29
    @MrRobeezy29 Месяц назад

    These visuals are so fantastic. Love your videos and subscribed.

  • @cherubin7th
    @cherubin7th 3 месяца назад +4

    Thank you this was super useful!

  • @srimanitejachinnam8297
    @srimanitejachinnam8297 3 месяца назад +34

    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

  • @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.

  • @sago27
    @sago27 3 месяца назад

    Thank you for such an informative video.

  • @jacob_90s
    @jacob_90s 3 месяца назад +17

    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 3 дня назад

      Ah man, feel sorry for you, FHIR is a total disaster

  • @user-js3tp6pr4z
    @user-js3tp6pr4z 3 месяца назад

    Big fan of your book sir. I am new to Architecture. 🙌

  • @sylvereleipertz955
    @sylvereleipertz955 3 месяца назад +5

    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.

  • @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!

  • @reprogrammingmind
    @reprogrammingmind 3 месяца назад +1

    Very clean explanation.

  • @fipabrate
    @fipabrate 3 месяца назад +1

    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.

  • @llight1635
    @llight1635 Месяц назад

    this is helpful! Thanks!

  • @atibhiagrawal6460
    @atibhiagrawal6460 14 дней назад +1

    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

  • @nikhilgoyal007
    @nikhilgoyal007 2 месяца назад

    wonderful, thanks a ton!

  • @davestorm6718
    @davestorm6718 3 месяца назад

    Thanks! I was guilty of not using headers for keys. Great point that keys would be in url logs.

  • @maxgrand2k
    @maxgrand2k 2 месяца назад +2

    Thanks for the video. But I am curious, what tools did you use to create your own diagrams and animations in this video?

  • @TrendytechGit
    @TrendytechGit 3 месяца назад

    Good presentation , May i know what tool you are using to presentation

  • @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).

  • @hoyinleunghk
    @hoyinleunghk 3 месяца назад +1

    thank you

  • @zenluiz
    @zenluiz 2 месяца назад +1

    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.

  • @raj_kundalia
    @raj_kundalia 2 месяца назад

    thank you!

  • @gus473
    @gus473 3 месяца назад

    :55 Yes! Another good video, thanks! 😎✌️

  • @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.

  • @AshNit-kq2gf
    @AshNit-kq2gf 2 месяца назад

    Nice tips, APIs were definitely not my strong suit before!

  • @endaksi_channel
    @endaksi_channel 2 месяца назад +1

    Versioning hell is great!

  • @lukehjo
    @lukehjo 3 месяца назад

    Awesome.

  • @BellBiker
    @BellBiker 2 месяца назад

    FWIW - Headers often work better for versioning rather than embedding that info in the URL.

  • @odeholon4590
    @odeholon4590 19 дней назад

    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.

  • @aocongtuan3914
    @aocongtuan3914 2 месяца назад

    you seem happy in this video =)), talk faster than usual

  • @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 2 месяца назад

      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 🎉🎉

  • @nicksrub
    @nicksrub 3 месяца назад +1

    url in your about section to blog is broken

  • @dexvt1862
    @dexvt1862 3 месяца назад +6

    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 месяца назад +5

      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_ 2 месяца назад

      ​@@nicdgonzalez🥚xactly

  • @everni8711
    @everni8711 2 месяца назад

    awesome

  • @AdityaRoshan-fm4wt
    @AdityaRoshan-fm4wt 2 месяца назад

    Great

  • @zshn
    @zshn 3 месяца назад +1

    Few more:
    Standardize your API response.
    Return proper error codes and messages.

  • @kakkoiij
    @kakkoiij 3 месяца назад

    No comments on Level1 - 3 and HATEOAS?

  • @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

  • @joachimdietl6737
    @joachimdietl6737 3 месяца назад

    When does it come to secure APIs? I watched the half of the video, but not a word about safety

  • @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

  • @danilomenoli
    @danilomenoli 3 месяца назад

    Do POST need to be idempotent????

  • @je_suis_onur
    @je_suis_onur 2 месяца назад +1

    Actually get methods are not favored at all for fetching items. POST is typically used. Take a look at RUclips'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 месяца назад +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.

  • @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

  • @saivaishnavthota1075
    @saivaishnavthota1075 2 месяца назад +2

    who is here after raghava sir message

  • @sidekick3rida
    @sidekick3rida Месяц назад

    This channel needs subtitles.

  • @sreevidyar9425
    @sreevidyar9425 3 месяца назад +2

    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.

  • @FinlayDaG33k
    @FinlayDaG33k 2 месяца назад +1

    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").

  • @anghathe2177
    @anghathe2177 3 месяца назад +16

    In tips 2: why PUT idempotence yes, but patch no
    Thank u

    • @anand.prasad502
      @anand.prasad502 3 месяца назад +8

      PUT means updating all the fields in an entry, PATCH means updating selective fields in an entry

    • @DerAuskennfuchs
      @DerAuskennfuchs 3 месяца назад +18

      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 месяца назад +3

      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.

  • @kklowd
    @kklowd 3 месяца назад

    15 inches 😧

  • @joachimdietl6737
    @joachimdietl6737 3 месяца назад

    rate limiting does not help against ddos attacks. What content is this?

    • @MK-lh3xd
      @MK-lh3xd 2 месяца назад

      Would you mind elaborating?

  • @pennyether8433
    @pennyether8433 2 месяца назад

    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.

  • @vladimir0rus
    @vladimir0rus 3 месяца назад +1

    Too fast and hard to understand.

  • @theeraphatsunthornwit6266
    @theeraphatsunthornwit6266 4 дня назад

    Lol i misread the title as Effective Sale API

  • @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 Месяц назад

      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.

  • @user-rw2yt8rh8x
    @user-rw2yt8rh8x 27 дней назад +1

    accent is tricky to understand please talk slow

  • @jonathanchow3401
    @jonathanchow3401 2 месяца назад +1

    plain generic info...

  • @VeeWebCode
    @VeeWebCode 3 месяца назад

    Love your videos.

  • @TsArtemi
    @TsArtemi 13 дней назад

    personally I do not like plurals into API...🥸