GENDER API TYPESCRIPT

पहले कंपोजर के साथ हमारी लाइब्रेरी को इंस्टॉल करें:

यहां पूरे क्लाइंट दस्तावेज़ देखें

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

पहले npm के साथ हमारी लाइब्रेरी इंस्टॉल करें:

$ npm i gender-api.com-client --save
import {Client as GenderApiClient, ResultSingleName} from "gender-api.com-client";

const genderApiClient = new GenderApiClient("your API key");

try {
    genderApiClient.getByFirstName('theresa', (response: ResultSingleName) => {
      console.log(response.gender); //female
      console.log(response.accuracy); //98
    });

    genderApiClient.getByFirstNameAndCountry('john', 'US', (response: ResultSingleName) => {
      console.log(response.gender); //male
      console.log(response.accuracy); //99
    });
}
catch(e) {
  console.log('Error:', e);
}

यहां पूरे क्लाइंट दस्तावेज़ देखें

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

पहले npm के साथ हमारी लाइब्रेरी इंस्टॉल करें:

यहां पूरे क्लाइंट दस्तावेज़ देखें

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

यहां से एक नमूना प्रोजेक्ट डाउनलोड करें:

दस्तावेज़ीकरण:

https://github.com/microknights/Gender-API
चैट