Genderize.io · Example Payload

Authenticated Request

Authenticated request using an API key for higher quota access

GenderNamesPredictionDemographicsMachine LearningStatistics

Authenticated Request is an example object payload from Genderize.io, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

descriptionrequestresponse

Example Payload

Raw ↑
{
  "description": "Authenticated request using an API key for higher quota access",
  "request": {
    "method": "GET",
    "url": "https://api.genderize.io/?name=james&apikey=YOUR_API_KEY",
    "headers": {}
  },
  "response": {
    "status": 200,
    "headers": {
      "X-Rate-Limit-Limit": "100000",
      "X-Rate-Limit-Remaining": "99999",
      "X-Rate-Limit-Reset": "2592000"
    },
    "body": {
      "name": "james",
      "gender": "male",
      "probability": 0.98,
      "count": 3547638
    }
  }
}