Welcome to the DunisTech Student API

This free API is designed to help you learn to work with APIs using React, Django, and Flask.

API Base URL

https://api.dunistech.ng/api/

Endpoints

Sample Fetch Request (JavaScript)

fetch('https://api.dunistech.ng/api/courses/').then(res => res.json()).then(data => console.log(data));

Sample Axios POST Request

axios.post('https://api.dunistech.ng/api/courses/', {
    title: 'New Course',
    description: 'Intro to React'
})

Sample JSON Response

Courses:

[{'id': 1, 'title': 'Flask Basics', 'description': 'Intro to Flask'}]

Recipes:

[{'id': 1, 'title': 'Jollof Rice', 'ingredients': 'Rice, Tomato, Pepper'}]