Django REST framework
  • Api Root
GET
  • json
  • api

Api Root

The default basic root view for DefaultRouter

GET /?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "posts": "http://admin.devxhub.com/posts/?format=api",
    "blogs/related_post": "http://admin.devxhub.com/blogs/related_post/?format=api",
    "latest_posts": "http://admin.devxhub.com/latest_posts/?format=api",
    "featured_posts": "http://admin.devxhub.com/featured_posts/?format=api",
    "popular_posts": "http://admin.devxhub.com/popular_posts/?format=api",
    "comments": "http://admin.devxhub.com/comments/?format=api",
    "categories": "http://admin.devxhub.com/categories/?format=api",
    "tags": "http://admin.devxhub.com/tags/?format=api",
    "services": "http://admin.devxhub.com/services/?format=api",
    "technologies": "http://admin.devxhub.com/technologies/?format=api",
    "technology_stacks": "http://admin.devxhub.com/technology_stacks/?format=api",
    "why_choose": "http://admin.devxhub.com/why_choose/?format=api",
    "do_cares": "http://admin.devxhub.com/do_cares/?format=api",
    "trusted_companies": "http://admin.devxhub.com/trusted_companies/?format=api",
    "sliders": "http://admin.devxhub.com/sliders/?format=api",
    "carrers": "http://admin.devxhub.com/carrers/?format=api",
    "jobs": "http://admin.devxhub.com/jobs/?format=api",
    "contact_subjects": "http://admin.devxhub.com/contact_subjects/?format=api",
    "contacts": "http://admin.devxhub.com/contacts/?format=api",
    "subscribe": "http://admin.devxhub.com/subscribe/?format=api"
}