6 Easy Tips to Design an AWESOME REST API

  Рет қаралды 36,127

ArjanCodes

ArjanCodes

Күн бұрын

Пікірлер: 73
@ArjanCodes
@ArjanCodes 6 ай бұрын
💡 Get my FREE 7-step guide to help you consistently design great software: arjancodes.com/designguide.
@roberttaylor7732
@roberttaylor7732 6 ай бұрын
Thanks! This is was great coverage of the subject.
@ArjanCodes
@ArjanCodes 6 ай бұрын
Hi Robert, thank you so much, glad you enjoyed it!
@rednax25
@rednax25 6 ай бұрын
This video came at just the right moment. Preparing some API s for a system, these tips will be implemented immediately. Thanks Arjan.
@ArjanCodes
@ArjanCodes 6 ай бұрын
You’re welcome!
@KeithFlint350
@KeithFlint350 6 ай бұрын
I'm looking forward to see more videos about the design. Like general concepts. I learn all programming by myself and after a short period of time I realise, that I'm developing a Frankenstein that's gonna eat me in a while. I build mess 😂
@ArjanCodes
@ArjanCodes 6 ай бұрын
More to come!
@vgrigori
@vgrigori 6 ай бұрын
@ArjanCodes Thanks for the video. I have two questions: 1. What do you think about swagger for api documentation? 2. How do you like to use POST instead of GET in case of multiple search filters?
@acmethunder
@acmethunder 6 ай бұрын
Standards and Easy integration are probably the most important. For example, if an API is going to accept a standardized data format (like JSON), FOLLOW THE SPEC!! (Authorize Net, I'm looking at you!!)
@polychad
@polychad 6 ай бұрын
Hey, what do you mean by "spec" in this context? Do you mean JSON spec so serialising/de-serialising is bug free?
@sambroderick5156
@sambroderick5156 6 ай бұрын
The time/date standards are complicated but are handled in the base library in Python plus additional packages (probably the same for js). There are a lot of transactions so requiring seconds is probably a performance issue.
@sebastiannarvaez2450
@sebastiannarvaez2450 6 ай бұрын
We need a video to learn how to develop the SDK, please
@soklagenhet
@soklagenhet 6 ай бұрын
It would be interesting if you created a video or course about structuring a fastapi application. E.g, how would you structure the endpoints (model-focused? domain focused?), how would you handle business logic?
@Cohnan13
@Cohnan13 6 ай бұрын
You read my mind. I had been thinking about finding resources on what a good API should be
@CharlesFourneau
@CharlesFourneau 6 ай бұрын
APIRoast 🔥
@Andrumen01
@Andrumen01 4 ай бұрын
Throughout the years I have found that the use of any pattern/technique/solution/method/etc., is using it in the right context. That is, use common sense, that is what people lack (including coders and programmers!) You don't have to use a bulldozer to dig a 1 meter deep hole, you can use a shovel and it will work like a charm. But if you expect do dig a foundation with a shovel it will take forever! Use the right tool for the right context!
@PaulFWatts
@PaulFWatts 6 ай бұрын
Thanks for the video. I enjoyed it !
@ArjanCodes
@ArjanCodes 6 ай бұрын
Glad you enjoyed it!
@oncedidactic
@oncedidactic 6 ай бұрын
re: custom data, off the top of my head similar to video's approach with some dfiferences: Use postgres json data type to store actual json (the custom data dictionary). That's already one step better than string storage with parsing. Then you can choose whether to do mutation logic in postgres itself with custom functions, or do that in the python layer. Either way, you need something that can merge json without dumb overwrite behavior, and avoid putting that chore on the API user's back. (As you mentioned.) Probably the easier/cleaner path at first to due all the mutation stuff in python and use postgres purely for storage with vanilla IO. Hopefully you can leverage python syntax to make this pretty breezy. i.e. custom_data = getdata(id) new_custom_data = req_body["newdata"] merge_data = custom_data.update(new_custom_data) #
@Website_TV_1
@Website_TV_1 4 ай бұрын
🔥 These 6 tips are GOLD for anyone building REST APIs! 💻 I’ve tried a few and they’ve drastically improved my API design. Can't wait to apply the rest! 😍 If you're into backend development or just starting out, this video is a MUST-WATCH! 🚀 #API #Backend #RESTAPI
@DrGreenGiant
@DrGreenGiant 2 ай бұрын
The naming of a member function "dict" made me shudder in the shadows. Really useful video though. I've been trying to wrap my head around how to make an api for a complex embedded sensor with an existing code base. Not sure if this is something you can help out with in general; adding an API to an existing project which is normally configured by a config file (or ENV) that only gets read on startup. Cheers!
@GamersOutcast
@GamersOutcast 6 ай бұрын
Quickly becoming the best coding channel. $10 for pro is too little I think its worth more than that. You should add supporter their for more than 10 I would get it in a heartbeat the value is already there.
@RandomHammy
@RandomHammy 6 ай бұрын
Anyone watching this video, ignore all of Arjan's comments on Paypal's use of ISO-8601 datetime format. That is a *financial* and *developer centric* API, so it *requires* arguments to be *as accurate as possible*. The use of the ISO format: - Guarantees an international standard - Guarantees easy datetime parsing and construction in almost all modern programming languages (python is one of the few oddballs that didn't follow international standards on datetime strings for some daft reason) - Guarantees cross time zone accuracy While Arjan is correct in saying arguments in APIs should be simple and easy to use, this is one of the worst examples to give! Datetimes in financial transactions are just one of those things where accuracy is a pivotal Functional Requirement
@ArjanCodes
@ArjanCodes 6 ай бұрын
I agree with you that date and time arguments should be accurate. I also don’t advocate for not using a standard for dates/times. The point I wanted to bring across in the video is that a) an API should have sensible defaults such as using the current date/time for the end time when retrieving transactions, and b) that API documentation should give clear examples of how to use the endpoints. Since dealing with dates and times can be complex, this is even more important for endpoints that use them.
@RandomHammy
@RandomHammy 6 ай бұрын
That's understandable! However, from experience developing within banks, there are no such things as "sensible defaults" in financial transactions, especially in APIs designed for hundreds or thousands of payments per minute :) You see similar in APIs for "safety critical" processes. While it is more "intuitive" to do things like round to the nearest minute/hour, there can be a lot on the line for mistakes that can happen when automated processes multiply micro-errors into macro-errors!
@ArjanCodes
@ArjanCodes 6 ай бұрын
Thanks for sharing! I don’t have experience working within a bank, so that’s certainly a different ballgame. Defaults and good documentation/examples are still helpful though if you’re a small business and you’re looking to integrate with a payment provider without having to get a degree in finance!
@DodaGarcia
@DodaGarcia 6 ай бұрын
THANK you. I was hoping someone else would say it.
@CGVWEB
@CGVWEB 6 ай бұрын
I agree. There can't be a sensible default for datetime ranges if you work with multiple timezones. If a client requests for the transactions of "today", you need to specify which timezone's day you're talking about. If your server has UTC time but your customer is at UTC-6, when they say "today" they could both be different calendar days. So a transaction that might have happened at 5:30 UTC on July 21, for clients at UTC-6 that transaction happened on July 20 at 23:30, which is a different calendar day to them. That's why those API's require setting start/end dates with ISO-8601 which accounts for timezones. If the server had a default for "today" being from 0:00-23:59 UTC, if the customer is not using UTC, they will see records from other calendar days.
@PhunkyBob
@PhunkyBob 6 ай бұрын
I see a lot of sites providing a panel with example for various languages (cURL, Python, JS, ...) as input and corresponding result for every endpoints. Is there a way to generate this panels automatically?
@jake115577
@jake115577 6 ай бұрын
Thanks, Arjan!
@bla7091
@bla7091 6 ай бұрын
10:21 I can reassure you that being in the field doesn't help with understanding what this means... Because I can see fields related to corporate bonds, but also to foreign exchange. So the API is mixing asset classes even though the name suggests it should only contain currencies. Complete nightmare to work with!
@therealjohnshelburne
@therealjohnshelburne 6 ай бұрын
YUP
@abhishekpawar921
@abhishekpawar921 6 ай бұрын
Very insightful video!
@ArjanCodes
@ArjanCodes 6 ай бұрын
Glad you found it helpful!
@btcroston1
@btcroston1 6 ай бұрын
What about making a test framework / sandbox for unit testing your API?
@Nalewkarz
@Nalewkarz 6 ай бұрын
Hmmm.. I didn't get the part with adding ids of related object. Isn't that obvious that You should provide only needed data (it means that related objects will be usefull only for chosen use cases) ? And then, when it's needed You can always return not only ids but also aggregate (more detailed information about related objects) . Input and output serializers (or input and output dto's) are also next big thing You missed. I liked that you showed real API's examples.
@x7A9cF2k
@x7A9cF2k 6 ай бұрын
Hi Arjan, your videos are as always precise and insightful. I have a question: I am currently doing a project that requires at the end of the execution to push 20-25K rows of data mssql server (on premise). I used sql alchemy, was bit slower. later I used pyodbc, bit faster. Now approx. it takes 3 minutes to push 4k rows. My data has 20 columns, including int, varchar, and bit types. Would you suggest something, that could make the pushing faster, maybe each time with a chunks of 100-150 rows?
@oncedidactic
@oncedidactic 6 ай бұрын
I can see why PayPal API would be intentionally designed to force use of fully granular arguments re: datetime (including seconds and timezone). It's an interesting pivot point here between "keep it simple" and "use obvious default behavior" vs safeguard the user against dumb logic errors especially where there are possible gotchas. (How you handle datetimes is a classic source of headache.) But this actually serves your broader point -- it should ALWAYS be as simple as possible. There should be a good reason why it's not as simple as you might think at first. And that reasoning should be explained well, and made obvious through example code. AKA "as simple as possible" might not mean "as easy as the novice thinks of it", and the required complexity then needs to be surfaced directly.
@rafaelagd0
@rafaelagd0 6 ай бұрын
Excelente tips! 👏👏👏👏👏
@ArjanCodes
@ArjanCodes 6 ай бұрын
Glad you liked them, Rafael!
@aliriano15
@aliriano15 6 ай бұрын
Always looking forward to Friday 17 CET
@ArjanCodes
@ArjanCodes 6 ай бұрын
Glad to be of service 😊
@yickysan
@yickysan 6 ай бұрын
Same same.
@yickysan
@yickysan 6 ай бұрын
I know private methods isn't a really python thing but I would have used the _ naming convention for methods I'll use only inside the class.
@not_a_human_being
@not_a_human_being 6 ай бұрын
While that all nice and dandy, I have a felling that some basic CRUD must be "out-of-the-box" experience.. like plug in your custom functions here and there and get an API (is there a package like that? gotta be somewhere..), at least for CRUD on objects that customer "owns".
@_DRMR_
@_DRMR_ 6 ай бұрын
Apparently there is `sqlalchemy-json` project that adds mutation-tracked json types.
@ArjanCodes
@ArjanCodes 6 ай бұрын
Good to know, thanks for sharing that!
@therealjohnshelburne
@therealjohnshelburne 6 ай бұрын
You’re a legend! Pointing out which APIs are great vs. sht is so helpful
@ArjanCodes
@ArjanCodes 6 ай бұрын
Glad you find it helpful!
@therealjohnshelburne
@therealjohnshelburne 6 ай бұрын
Stupid Question- what is difference between documentation and SDK?
@ArjanCodes
@ArjanCodes 6 ай бұрын
An SDK is typically a library whereas documentation is often a website. For example, Stripe has a Python SDK, this is a package you install. It also has a website with documentation.
@sofianeabdellaoui3682
@sofianeabdellaoui3682 6 ай бұрын
I never actually succeeded to do anything in SQLAlchemy from their documentation 😅
@ArjanCodes
@ArjanCodes 6 ай бұрын
Haha, I totally get that.
@radadadadee
@radadadadee 6 ай бұрын
SQLAlchemy has an atrocious documentation, I tried really hard and could barely make any sense of it
@Neejoh
@Neejoh 5 ай бұрын
I think you use “Mea culpa” wrong Arjan. Look it up. Video is good info though, even for when you don’t write Python.
@ulfjohansen2139
@ulfjohansen2139 6 ай бұрын
The fact that you write applications that don't care about proper representation of time is just an admission that you don't actually work in the real world. Using anything other than a proper standard representation of time in a api that is used globally would be crazy. Somtimes things are not as simple as it is with your hobby projects.
@ArjanCodes
@ArjanCodes 6 ай бұрын
You’re missing the point. I don’t advocate for not using a standard for dates/times. The point I wanted to bring across in the video is that a) an API should have sensible defaults such as using the current date/time for the end time when retrieving transactions, and b) that API documentation should give clear examples of how to use the endpoints. Since dealing with dates and times can be complex, this is even more important for endpoints that use them.
@bobdowling6932
@bobdowling6932 6 ай бұрын
PayPal documents that it has a delay of up to three hours between something being entered and appearing in the search results. You don’t mention the other handlers. Do they explicitly say the response is instant (or has some shorter period)? Or are you assuming that their lack of statement means that it is immediate? Have you tested them? Are you truly this naïve?
@CollinHeist20
@CollinHeist20 6 ай бұрын
This was just an excuse to bash the PayPal API, wasn't it🤣
@ArjanCodes
@ArjanCodes 6 ай бұрын
LOL
@adrianojordao4634
@adrianojordao4634 5 ай бұрын
I like your channel, the content and your preesentation and talking. Its a lovely channel. But the pictures before you click the video, are terrible. Really really bad. Please improve that, a litle bit more classy ;)
@hriscuvalerica4814
@hriscuvalerica4814 6 ай бұрын
Great video ! But clearly you didn't design your api to handle a couple of trillion concurrent requests ! What is this ?!? Amateur hour ?
@ArjanCodes
@ArjanCodes 6 ай бұрын
Haha, proud to be an amateur!
@glorytoarstotzka330
@glorytoarstotzka330 6 ай бұрын
not a great thumbnail
@bumbalaaa
@bumbalaaa 5 ай бұрын
not a great comment
@amadzarak7746
@amadzarak7746 6 ай бұрын
Thanks Arjan!
5 Tips for Writing Clean Python Code
25:59
ArjanCodes
Рет қаралды 29 М.
My FAVORITE Error Handling Technique
16:01
ArjanCodes
Рет қаралды 47 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 11 МЛН
IL'HAN - Qalqam | Official Music Video
03:17
Ilhan Ihsanov
Рет қаралды 700 М.
Sigma Kid Mistake #funny #sigma
00:17
CRAZY GREAPA
Рет қаралды 30 МЛН
How to (and how not to) design REST APIs
14:28
CodeOpinion
Рет қаралды 61 М.
Designing Quality APIs (Cloud Next '18)
40:51
Google Cloud Tech
Рет қаралды 76 М.
15 POWERFUL Python Libraries You Should Be Using
22:31
ArjanCodes
Рет қаралды 70 М.
RESTful API Patterns & Practices • Mike Amundsen • GOTO 2024
47:36
GOTO Conferences
Рет қаралды 50 М.
7 Python Code Smells to AVOID at All Costs
22:10
ArjanCodes
Рет қаралды 378 М.
7 Functional Programming Techniques EVERY Developer Should Know
21:35
10 Tips to Become REALLY Good at Python
27:39
ArjanCodes
Рет қаралды 31 М.
What Makes A Great Developer
27:12
ThePrimeTime
Рет қаралды 240 М.
Rest API - Best Practices - Design
15:50
High-Performance Programming
Рет қаралды 117 М.
Правильный подход к детям
00:18
Beatrise
Рет қаралды 11 МЛН