Gender-API
Gender-API is AI-gestuurd en helpt u te achterhalen of een voornaam waarschijnlijker door mannen of vrouwen wordt gebruikt.
https://gender-api.com/get?name=elizabeth&key=yourkey
{"name":"elizabeth", "gender":"female", "samples":355, "accuracy":100, "duration":"34ms"}
UITGELEGD OVER DE GENDER API
PROBEER HET UIT
WIJ KUNNEN OOK HET GESLACHT VAN EEN E-MAILADRES BEPALEN
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
GEMAKKELIJKE INTEGRATIE
Onze API kan gemakkelijk worden geïntegreerd in elk bestaand platform in elke programmeertaal. Bekijk enkele codevoorbeelden.
Installeer eerst onze bibliotheek met 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();
}
Bekijk hier de volledige klantdocumentatie:
UPLOADEN VAN CSV- EN EXCEL-BESTANDEN
Upload CSV-bestanden met maximaal 10.000.000 datasets of Excel-bestanden met maximaal 100.000 datasets per bestand.
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
Gratis plan beschikbaar
Sluit je vandaag bij ons aan en ontvang elke maand tot 100 verzoeken gratis.