## web/social-profiles

`GET /v1/web/social-profiles`

Starting from one known profile, the same person or brand's profiles on other platforms, with a confidence score and the evidence behind each match, plus link-in-bio and website URLs.

*Social profile discovery*

| Parameter | Required | Description |
| --- | --- | --- |
| `platform` | yes | Platform of the known profile — e.g. `instagram` |
| `handle` | yes | Handle on that platform — e.g. `nasa` |
| `dry_run` | no | Read a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution. — e.g. `1` |

**Cost:** 15 credits at list price per successful uncached response; variable-cost operations may quote or settle a different charge. Confirmed uncharged or refunded failures report zero. Pending reconciliation can report credits_used:null; retain request_id and the original idempotency key.

```bash
curl "https://www.monocrawl.com/v1/web/social-profiles?platform=instagram&handle=nasa" \
  -H "x-api-key: mn_your_key_here"
```

### Response data

Illustrative abbreviated data; documented core fields are optional and may be null. Additional source fields are allowed.

```json
{
  "_warnings": [
    "example"
  ],
  "has_more": false,
  "items": [
    {
      "confidence": 0,
      "evidence": [
        "example"
      ],
      "handle": "example",
      "platform": "example",
      "url": "https://example.com/example"
    }
  ],
  "link_in_bio_urls": [],
  "linked_profile_urls": [],
  "partial": false,
  "same_handle_candidates": [
    "example"
  ],
  "source": {
    "handle": "example",
    "platform": "example",
    "url": "https://example.com/example"
  },
  "website_urls": [
    "example"
  ]
}
```

[Field reference](https://www.monocrawl.com/docs/endpoints/web/social-profiles#response) · [JSON Schema for response.data](https://www.monocrawl.com/schemas/web/social-profiles.json)
