Better Fetch

Age and gender estimation Detect age and gender

Detect age and gender from public Age and gender estimation surfaces, returned as structured data for agents, research, and monitoring workflows.

Runnable Better Fetch operation

This capability runs through age_gender_detector and returns normalized JSON through the tool workspace, REST runner, or MCP.

Runs bounded local ONNX inference on one face-focused public image. The output is an appearance estimate—not identity, exact age, self-described gender, age verification, or a basis for high-stakes decisions.

REST

curl -sS -X POST "https://betterfetch.co/api/tools/age_gender_detector/run" \
  -H "Authorization: Bearer bf_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"input": {"image_url":"https://images.pexels.com/photos/614810/pexels-photo-614810.jpeg?w=720"}}'

MCP

1. Call search_tools for "Age and gender estimation Detect age and gender"
2. Call run_tool with:
   name: "age_gender_detector"
   input: {
  "image_url": "https://images.pexels.com/photos/614810/pexels-photo-614810.jpeg?w=720"
}