API

5 Awesome APIs for All Frontend Developers

APIs have become indispensable for software projects today. Ease of use, stability and fast operation are some of the factors that cause this. APIs are generally produced on the backend side and frontend applications obtain the data they want to obtain from the APIs provided by the backend applications. This article will list the awesome 5 APIs that frontend applications can meet different types…
Read more
API

Create your first REST API in Django Rest Framework

Python, one of the most popular programming languages ​​today, is used for almost every subject in the field of informatics. Although we often hear the name of Python in the fields of artificial intelligence and data analysis, the use of Python is not limited to this. Especially when developing the REST API, Python’s Django Rest Framework provides developers with many conveniences. What…
Read more
API

Advanced REST API Design

Rest is a data transfer method used in software built on service-oriented architecture. It runs on HTTP and is simpler than other alternatives, and faster because it sends and receives data with minimal content. It enables applications to communicate by carrying XML or JSON…
API

13 REST API Interview Questions You Need to Know

The importance and use of web services in today’s software technologies is increasing. Many systems and applications now communicate with each other through web services and exchange data. The most widely used type of web service today is the REST API. There are many issues to know about REST APIs, which are increasingly used in the technology world. In this article, we have prepared 13…
Read more
API

RESTful API Tutorial: How to Upload Files to a Server

File Upload is an application that helps us upload files to the server. With File Upload, it is possible to upload files of the type allowed by the system, such as pictures, excel, pdf, to applications. File Upload control, on the other hand, enables us to perform file…
API

Best Practices For Your API Versioning Strategy

While developing the API, there is one reality that we should keep in mind, which is the principle of ‘Change is Inevitable’. Although we are carrying out business-oriented work during the development process, we may need to add more responsibilities to the API, either due to unpredictable or later needs. In such a case, we need to version the APIs as a result of each update, in order…
Read more