eduAssist.me is a mobile-friendly education webapp designed and developed in 2017 by Patrick Scheuchzer, Pascal Kress, Pauline Gaget, and Spencer Bray.
- Mobile-first - our target audience doesn't have access to a desktop or laptop computer. Most education software is designed for use on a large format screen with a keyboard and mouse, eduAssist is intended to be used on a handheld touchscreen device without a mouse or keyboard.
- Simple - no bloated features. Get started right away. Quick statistics on your student's performance without any prior configuration.
- Free - we wanted to build a piece of software that could help low-income teachers, not to make a profit.
Wanna check it out with some pre-populated data? Feel free to login with these credentials:
- Login:
[email protected]
- Password:
password
- API Token:
8Q21xcNYWjCyxvyA-cDm
Just like a national park - please leave it like you found it!
We're currently adding an API.
In order to authenticate, please send the following headers:
- X-User-Email:
Your Email Here
- X-User-Token:
Your API Token Here
The following endpoints are available:
GET https://eduassist.herokuapp.com/api/v1/school_classes will provide an index
of classes associated with your user credentials.
[{
"id": 1,
"name": "Grade 3",
"description": "Half the students were transferred this year as their old school was closed. Remember they're new in town!\n Need extra attention in Math."
},
{
"id": 2,
"name": "Grade 10",
"description": "Really rowdy group, remember your classroom control techniques.\r\n They absolutely love stories about famous Nigerians in history!"
}
]
POST https://eduassist.herokuapp.com/api/v1/school_classes will allow you to create
a new class from the API. Please use the params school_class[name]: Your Name Here
and school_class[description]: Your Description Here
.
GET https://eduassist.herokuapp.com/api/v1/school_classes/:id will allow you to show
a specific class ID and retrieve a list of the students.
{
"id": 1,
"name": "Grade 3",
"description": "Half the students were transferred this year as their old school was closed. Remember they're new in town!\n Need extra attention in Math.",
"students": [
{
"id": 1,
"first_name": "Bisi",
"last_name": "Adeleye-fayemi",
"bio": "Bisi comes from a small village in the rural north, she's really shy but very bright.",
"birthday": "2008-05-12"
},
{
"id": 2,
"first_name": "Olisa",
"last_name": "Agbakoba",
"bio": "Olisa has trouble focusing during class. She tends to bother other students and can be a distraction. She is very good at math.",
"birthday": "2008-05-12"
}
]
}
We'd love to collaborate with software developers of any skill level to help bring the best experience to our users. Please don't hesitate to jump onboard!