Gender API
Gender-API est alimenté par l'IA et vous aide à déterminer si un prénom est plus susceptible d'être utilisé par des hommes ou des femmes.
https://gender-api.com/get?name=elizabeth&key=yourkey
{"name":"elizabeth", "gender":"female", "samples":355, "accuracy":100, "duration":"34ms"}
L'API DU GENRE EXPLIQUÉ
TESTE NOTRE PRODUIT
reCAPTCHA non chargé. Veuillez accepter les Cookies reCAPTCHA icis pour utiliser cette fonctionnalité.
NOUS POUVONS ÉGALEMENT DÉTERMINER LE SEXE DE TON CLIENT SUR LA BASE DE SON ADRESSE ÉLECTRONIQUE
david3253@gmail.com
David
male
patricia.clarks@outlook.com
Patricia
female
emily.ny@live.com
Emily
female
liamnoland@yahoo.com
Liam
male
l3slie@gmail.com
Leslie
male
j0anna32@live.com
Joanna
female
UNE INTÉGRATION FACILE
Notre API peut facilement être intégrée à toute plateforme existante dans n’importe quelle langue. Jetes un coup d'œil à quelques exemples de codage.
Commence par installer notre bibliothèque avec Composer :
$ composer require gender-api/client
use GenderApi\Client as GenderApiClient;
try {
$apiClient = new GenderApiClient('insert your API key');
// Query a single name
$lookup = $apiClient->getByFirstName('elisabeth');
if ($lookup->genderFound()) {
echo $lookup->getGender(); // female
}
// Query a full name and improve the result by providing a country code
$lookup = $apiClient->getByFirstNameAndLastNameAndCountry('Thomas Johnson', 'US');
if ($lookup->genderFound()) {
echo $lookup->getGender(); // male
echo $lookup->getFirstName(); // Thomas
echo $lookup->getLastName(); // Johnson
}
} catch (GenderApi\Exception $e) {
// Name lookup failed due to a network error or insufficient remaining requests
// left. See https://gender-api.com/en/api-docs/error-codes
echo 'Exception: ' . $e->getMessage();
}
L'ensemble de la documentation client est accessible ici :
TÉLÉCHARGEMENT DE FICHIERS CSV ET EXCEL
Télécharges des fichiers CSV comportant jusqu’à 10 000 000 jeux de données ou des fichiers Excel comprenant jusqu'à 100 000 jeux de données par fichier.
1
first_name;last_name
2
Silvia;Miller
3
Jonathan;Holmes
4
Sophia;Smith
1
firstname;lastname;ga_gender;ga_accuracy
2
Silvia;Miller;female;99
3
Jonathan;Holmes;male;100
4
Sophia;Smith;female;9
Plan gratuit disponible
Rejoignez-nous aujourd'hui et recevez jusqu'à 100 demandes gratuitement chaque mois.