Find the gender of any name.
A simple, no-fuss, free API to determine the gender of any name. Self-hosted and open-source.
# Download the image $ docker pull ghcr.io/cryling/gender-engine:latest # Run the image $ docker run -p 8080:8080 ghcr.io/cryling/gender-engine # Off you go! $ curl -X GET "http://localhost:8080/api/v1/gender?name=tom&country=US" { "message": "tom could be found", "result": { "Name": "tom", "Gender": "M", "Country": "US", "Probability": "0.99560356" } }