Género API

Gender-API le ayuda a averiguar si un nombre es más probable que sea utilizado por hombres o por mujeres.

https://gender-api.com/get?name=elizabeth&key=yourkey

{"name":"elizabeth", "gender":"female", "samples":355, "accuracy":100, "duration":"34ms"}

EXPLICACIÓN DE LA API DE GÉNERO

HACER UNA PRUEBA DE CONDUCCIÓN

¡Adelante!

TAMBIÉN PODEMOS DETERMINAR EL GÉNERO DE UNA DIRECCIÓN DE CORREO ELECTRÓNICO

TAMBIÉN PODEMOS DETERMINAR EL GÉNERO DE UNA DIRECCIÓN DE CORREO ELECTRÓNICO

FÁCIL INTEGRACIÓN

Nuestra API puede integrarse fácilmente en todas las plataformas existentes en cualquier idioma. Echa un vistazo a algunos ejemplos de codificación.

Primero instala nuestra biblioteca con el compositor:

$ 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();
}

Vea la documentación completa del cliente aquí:

https://github.com/markus-perl/gender-api-client

Primero instala nuestra biblioteca con NPM:

Vea la documentación completa del cliente aquí:

https://github.com/markus-perl/gender-api-client-npm

Primero instala nuestra biblioteca con NPM:

Vea la documentación completa del cliente aquí:

https://github.com/markus-perl/gender-api-client-npm

Descargue un proyecto de muestra aquí:

Documentación:

https://github.com/microknights/Gender-API

CARGA DE ARCHIVOS CSV Y EXCEL

Subir archivos CSV con hasta 10.000.000 de conjuntos de datos o archivos de Excel con hasta 100.000 conjuntos de datos por archivo.

input.csv
1
first_name;last_name
2
Silvia;Miller
3
Jonathan;Holmes
4
Sophia;Smith
El archivo CSV será procesado
output.csv
1
firstname;lastname;ga_gender;ga_accuracy
2
Silvia;Miller;female;99
3
Jonathan;Holmes;male;100
4
Sophia;Smith;female;9

Plan gratuito disponible

Únase hoy y reciba hasta 100 solicitudes de forma gratuita cada mes.

PRECIOS

DESCARGAR NUESTRA PRESENTACIÓN

Descargar presentación

Chat