Home - Django REST Framework
Home - Django REST Framework
org/
Django REST framework is a powerful and flexible toolkit for building Web APIs.
• The Web browsable API is a huge usability win for your developers.
• Authentication policies including packages for OAuth1a and OAuth2.
• Serialization that supports both ORM and non-ORM data sources.
• Customizable all the way down - just use regular function-based views if you don't need the more
powerful features.
• Extensive documentation, and great community support.
• Used and trusted by internationally recognised companies including Mozilla, Red Hat, Heroku, and
Eventbrite.
Funding
REST framework is a collaboratively funded project. If you use REST framework commercially we strongly
1 of 6 11/3/24, 09:32
Home - Django REST framework https://www.django-rest-framework.org/
encourage you to invest in its continued development by signing up for a paid plan.
Every single sign-up helps us make REST framework long-term financially sustainable.
Zuplo
Many thanks to all our wonderful sponsors, and in particular to our premium backers, Sentry, Stream,
Spacinov, Retool, bit.io, PostHog, CryptAPI, FEZTO, Svix, , and Zuplo.
Requirements
REST framework requires the following:
2 of 6 11/3/24, 09:32
Home - Django REST framework https://www.django-rest-framework.org/
We highly recommend and only officially support the latest patch release of each Python and Django
series.
Installation
Install using pip , including any optional packages you want...
INSTALLED_APPS = [
...
'rest_framework',
]
If you're intending to use the browsable API you'll probably also want to add REST framework's login and
logout views. Add the following to your root urls.py file.
urlpatterns = [
...
path('api-auth/', include('rest_framework.urls'))
]
Example
Let's take a look at a quick example of using REST framework to build a simple model-backed API.
3 of 6 11/3/24, 09:32
Home - Django REST framework https://www.django-rest-framework.org/
We'll create a read-write API for accessing information on the users of our project.
Any global settings for a REST framework API are kept in a single configuration dictionary named
REST_FRAMEWORK . Start off by adding the following to your settings.py module:
REST_FRAMEWORK = {
# Use Django's standard `django.contrib.auth` permissions,
# or allow read-only access for unauthenticated users.
'DEFAULT_PERMISSION_CLASSES': [
'rest_framework.permissions.DjangoModelPermissionsOrAnonReadOnly'
]
}
Don't forget to make sure you've also added rest_framework to your INSTALLED_APPS .
We're ready to create our API now. Here's our project's root urls.py module:
You can now open the API in your browser at http://127.0.0.1:8000/, and view your new 'users' API. If you
use the login control in the top right corner you'll also be able to add, create and delete users from the
system.
Quickstart
4 of 6 11/3/24, 09:32
Home - Django REST framework https://www.django-rest-framework.org/
Can't wait to get started? The quickstart guide is the fastest way to get up and running, and building APIs
with REST framework.
Development
See the Contribution guidelines for information on how to clone the repository, run the test suite and help
maintain the code base of REST Framework.
Support
For support please see the REST framework discussion group, try the #restframework channel on
irc.libera.chat , or raise a question on Stack Overflow, making sure to include the 'django-rest-
framework' tag.
For priority support please sign up for a professional or premium sponsorship plan.
Security
Security issues are handled under the supervision of the Django security team.
The project maintainers will then work with you to resolve any issues where required, prior to any public
disclosure.
License
Copyright © 2011-present, Encode OSS Ltd. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided
that the following conditions are met:
• Redistributions of source code must retain the above copyright notice, this list of conditions and the
following disclaimer.
• Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
following disclaimer in the documentation and/or other materials provided with the distribution.
• Neither the name of the copyright holder nor the names of its contributors may be used to endorse or
promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
5 of 6 11/3/24, 09:32
Home - Django REST framework https://www.django-rest-framework.org/
6 of 6 11/3/24, 09:32