Kyupid is a dating app/service for Bangalore users.
This web application uses MapboxGL to represent Kyupid's users data and provide area wise insights on their app usage.
API_URL: https://kyupid-api.vercel.app/apiThe sample GeoJSON data for areas in Bangalore
ENDPOINT: /areas
METHOD: GET{
"type": "FeatureCollection",
"features": [
...
{
"type": "Feature",
"properties": {
"area_id": 124,
"name": "Koramangala",
"pincode": 12345
},
"geometry": {
"type": "Polygon",
"coordinates": [] // coordinates for the polygon
}
}
...
]
}Sample API response for the users
ENDPOINT: /users
METHOD: GET{
"users": [
{
"user_id": 1,
"area_id": 124, // represents the area user belongs to
"age": 23,
"gender": M, // M -> Male, F -> Female
"is_pro_user": true,
"total_matches": 5,
}
]
}