Good APIs Vs Bad APIs: 7 Tips for API Design

Поділитися
Вставка
  • Опубліковано 26 вер 2024

КОМЕНТАРІ • 87

  • @deefdragon
    @deefdragon 7 місяців тому +30

    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.

  • @AvnerSolomon
    @AvnerSolomon 3 місяці тому +1

    Please keep in mind that using filters inside the header and not the body might result in many url length related limitations. On the other hand using filters in body will not allow to preview directly the result in a simple browser GET navigation. Most likely a decent solution would support both simple filtering via a query string format inside url but also a more advance filtering via body. This is important when you application has complex filters or multiple filters. EG1: multiple filters with multiple options where you might hit a limit unless you defined an encoding to represent a set of multiple filters being selected. EG2: a business oriented app where the user needs customisable filters and grouping of filters with AND / OR between them like (filter1=A or (filter2 = b and filter3=c)). Users might end up with really long filters that might not be easily serialisable in an URL , keep human readability AND size constraints.

  • @jacob_90s
    @jacob_90s 7 місяців тому +21

    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 4 місяці тому

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

  • @sylvereleipertz955
    @sylvereleipertz955 7 місяців тому +6

    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.

  • @srimanitejachinnam8297
    @srimanitejachinnam8297 7 місяців тому +42

    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

  • @yung-yuchen1219
    @yung-yuchen1219 7 місяців тому +14

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

  • @dexvt1862
    @dexvt1862 7 місяців тому +7

    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 7 місяців тому +6

      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_ 7 місяців тому

      ​@@nicdgonzalez🥚xactly

  • @atibhiagrawal6460
    @atibhiagrawal6460 5 місяців тому +22

    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

  • @odeholon4590
    @odeholon4590 5 місяців тому +5

    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.

    • @nataoliveira2247
      @nataoliveira2247 4 місяці тому

      the only problem is if you try to share the link to another person, not containing the same filter

  • @RidvanGER
    @RidvanGER 7 місяців тому +8

    As always very well explained, thank you!

  • @fipabrate
    @fipabrate 7 місяців тому +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.

  • @henrythomas7112
    @henrythomas7112 6 місяців тому +1

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

  • @jj-big-slay-yo
    @jj-big-slay-yo 6 місяців тому

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

  • @cherubin7th
    @cherubin7th 7 місяців тому +4

    Thank you this was super useful!

  • @rafid__
    @rafid__ Місяць тому

    thanks. may be you can give examples for non restful endpoints.

  • @MrRobeezy29
    @MrRobeezy29 6 місяців тому

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

  • @reprogrammingmind
    @reprogrammingmind 7 місяців тому +1

    Very clean explanation.

  • @zenluiz
    @zenluiz 7 місяців тому +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.

  • @maxgrand2k
    @maxgrand2k 7 місяців тому +2

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

  • @davestorm6718
    @davestorm6718 7 місяців тому

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

  • @stea27
    @stea27 7 місяців тому

    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.

  • @endaksi_channel
    @endaksi_channel 7 місяців тому +1

    Versioning hell is great!

  • @SeaBike007
    @SeaBike007 7 місяців тому

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

  • @solowolo-d8h
    @solowolo-d8h 7 місяців тому

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

  • @zshn
    @zshn 7 місяців тому +1

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

  • @RushOrbit
    @RushOrbit 3 місяці тому

    Can you talk about API request validation?

  • @llight1635
    @llight1635 6 місяців тому

    this is helpful! Thanks!

  • @sago27
    @sago27 7 місяців тому

    Thank you for such an informative video.

  • @tomasmartini105
    @tomasmartini105 2 місяці тому

    Great video

  • @aocongtuan3914
    @aocongtuan3914 7 місяців тому

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

  • @nikhilgoyal007
    @nikhilgoyal007 7 місяців тому

    wonderful, thanks a ton!

  • @hoyinleunghk
    @hoyinleunghk 7 місяців тому +1

    thank you

  • @ColinRichardson
    @ColinRichardson 7 місяців тому

    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 7 місяців тому

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

  • @chrisder1814
    @chrisder1814 2 місяці тому

    hello could you tell me what you think of the ideas I had if they are feasible

  • @raj_kundalia
    @raj_kundalia 7 місяців тому

    thank you!

  • @je_suis_onur
    @je_suis_onur 7 місяців тому +1

    Actually get methods are not favored at all for fetching items. POST is typically used. Take a look at UA-cam'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 7 місяців тому +3

      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.

  • @TrendytechGit
    @TrendytechGit 7 місяців тому

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

  • @salaarkalki
    @salaarkalki 7 місяців тому

    IOT sir chadastham valla ochinollaki swagatham suswagatham

  • @hackenbacker
    @hackenbacker 7 місяців тому

    #5 vs #7 How about `/users/sort_by/registered` ?

  • @joachimdietl6737
    @joachimdietl6737 7 місяців тому

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

  • @gus473
    @gus473 7 місяців тому

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

  • @NiranjanNanda
    @NiranjanNanda 7 місяців тому

    Versioning is such a controversial topic in API design. As a matter of fact, on a lighter note, REST is controversial to begin with. 😀

  • @Ali2307013
    @Ali2307013 6 місяців тому

    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 7 місяців тому +1

    url in your about section to blog is broken

  • @lukehjo
    @lukehjo 7 місяців тому

    Awesome.

  • @kakkoiij
    @kakkoiij 7 місяців тому

    No comments on Level1 - 3 and HATEOAS?

  • @sidekick3rida
    @sidekick3rida 6 місяців тому +1

    This channel needs subtitles.

  • @AdityaRoshan-fm4wt
    @AdityaRoshan-fm4wt 7 місяців тому

    Great

  • @everni8711
    @everni8711 7 місяців тому

    awesome

  • @Typnickman-
    @Typnickman- 7 місяців тому

    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 6 місяців тому

      /product/:id is not restful

  • @saivaishnavthota1075
    @saivaishnavthota1075 7 місяців тому +2

    who is here after raghava sir message

  • @vladimir0rus
    @vladimir0rus 7 місяців тому +2

    Too fast and hard to understand.

  • @anghathe2177
    @anghathe2177 7 місяців тому +21

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

    • @anand.prasad502
      @anand.prasad502 7 місяців тому +13

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

    • @DerAuskennfuchs
      @DerAuskennfuchs 7 місяців тому +21

      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 7 місяців тому +4

      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.

  • @FinlayDaG33k
    @FinlayDaG33k 7 місяців тому +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").

  • @my_yt666
    @my_yt666 7 місяців тому

    How about versioning per endpoint?

    • @dandogamer
      @dandogamer 7 місяців тому

      Yeah I tend to go for the /carts/v1 approach tbh

  • @danilomenoli
    @danilomenoli 7 місяців тому

    Do POST need to be idempotent????

  • @sreevidyar9425
    @sreevidyar9425 7 місяців тому +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.

  • @kklowd
    @kklowd 7 місяців тому

    15 inches 😧

  • @joachimdietl6737
    @joachimdietl6737 7 місяців тому

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

    • @MK-lh3xd
      @MK-lh3xd 7 місяців тому

      Would you mind elaborating?

  • @pennyether8433
    @pennyether8433 7 місяців тому

    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.

  • @jonathanchow3401
    @jonathanchow3401 7 місяців тому +1

    plain generic info...

  • @RahulGarg-x6f
    @RahulGarg-x6f 5 місяців тому +1

    accent is tricky to understand please talk slow

  • @VeeWebCode
    @VeeWebCode 7 місяців тому

    Love your videos.

  • @TsArtemi
    @TsArtemi 5 місяців тому

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

  • @theeraphatsunthornwit6266
    @theeraphatsunthornwit6266 4 місяці тому

    Lol i misread the title as Effective Sale API

  • @ericjbowman1708
    @ericjbowman1708 6 місяців тому

    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 6 місяців тому

      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 6 місяців тому

      @@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 6 місяців тому

      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 6 місяців тому

      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 6 місяців тому

      U missed the backwards compatibility. Every version should support backwards compatibility.

  • @JaLikon65
    @JaLikon65 7 місяців тому

    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!