Skip to content

monisha16/kyupid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kyupid

image

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 Details

API_URL: https://kyupid-api.vercel.app/api

The 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,
        }
    ]
}

About

web application for better understanding of Kyupid, a dating app/service based on Bangalore

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages