Image to Person API

Run a reverse image search on any public image URL. Returns a list of matching web pages — articles, posts, and profiles — each with a title, link, and source.

Endpoint: https://api.enrichmentapi.io/image_to_person

API Parameters

🔑

Authentication

  • api_key Required
    Your API key from the dashboard.
🖼

️ Query Parameters

  • url Required
    Public URL of the image to search (e.g. a headshot or profile photo).

API Examples

Code to Integrate
curl -G "https://api.enrichmentapi.io/image_to_person" \
  --data-urlencode "api_key=APIKEY" \
  --data-urlencode "url=https://example.com/photo.jpg"
API Response
{
  "success": true,
  "image_url": "https://images.enrichmentapi.io/lens/0f165632cf63409c62f85d7e2f6ebd393cca910560739dc0f4883af089bd8d7d.jpg",
  "results": [
    {
      "title": "Articles by Jordan Lee | Author at Nordic APIs",
      "link": "https://nordicapis.com/author/jordanlee/",
      "source": "Nordic APIs",
      "in_stock": false
    },
    {
      "title": "Jordan Lee - Medium",
      "link": "https://medium.com/@jordanlee",
      "source": "Medium",
      "in_stock": false
    },
    {
      "title": "Jordan Lee posted on LinkedIn",
      "link": "https://www.linkedin.com/posts/jordanlee_activity-7491504867677605888",
      "source": "LinkedIn",
      "in_stock": false
    }
  ]
}