mirrored listing x402 eip155:8453

Get a full Instagram profile by handle (bio, counts, and related fields)

Get a full Instagram profile by handle (bio, counts, and related fields).

Do you run api.socialfetch.dev? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
14000 (raw units)
price
16
calls / 30d
1
unique payers
2026-09-17
updated

Provider

api.socialfetch.dev · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x02C2fCAfCe36B4AAdB39625866Bc6B1699d83043",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "14000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "pathParams": {
          "handle": "mayberrymutts"
        },
        "queryParams": {},
        "type": "http"
      },
      "output": {
        "example": {
          "data": {
            "lookupStatus": "found",
            "metrics": {
              "followers": 291682804,
              "following": 264,
              "posts": 1667
            },
            "profile": {
              "_truncated": true,
              "avatarUrl": "https://scontent-phl2-1.cdninstagram.com/v/t51.82787-19/551608484_18567162979020081_1135468084872726555_n.jpg?stp=dst-j…",
              "avatarUrlHd": "https://scontent-phl2-1.cdninstagram.com/v/t51.82787-19/551608484_18567162979020081_1135468084872726555_n.jpg?stp=dst-j…",
              "bio": "Just Do It.",
              "businessAccount": true,
              "displayName": "Nike",
              "handle": "nike",
              "platform": "instagram",
              "platformUserId": "13460080",
              "privateAccount": false,
              "professionalAccount": true,
              "profileUrl": "https://www.instagram.com/nike/",
              "verified": true
            },
            "recentPosts": [
              {
                "caption": "The story continues @cristiano",
                "commentCount": 16844,
                "createdAt": "2026-07-06T22:11:14.000Z",
                "dimensions": {
                  "height": null,
                  "width": null
                },
                "displayUrl": "https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/741481390_18641880778020081_6875180679791777305_n.jpg?stp=dst-j…",
                "id": "3935562768090283565",
                "likeCount": 1839927,
                "mediaType": "image",
                "shortcode": "Dad7XxvRj4t",
                "takenAt": 1783375874,
                "thumbnailUrl": "https://scontent-phl2-1.cdninstagram.com/v/t51.82787-15/741481390_18641880778020081_6875180679791777305_n.jpg?stp=c0.51…"
              }
            ],
            "relatedProfiles": []
          },
          "meta": {
            "creditsCharged": 1,
            "requestId": "req_c223d818-48c5-48f0-8680-bcec1b8530e7",
            "version": "v1"
          }
        },
        "type": "json"
      }
    },
    "routeTemplate": "/v1/instagram/profiles/:handle",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "pathParams": {
              "properties": {
                "handle": {
                  "description": "Instagram handle to look up, with or without a leading @. A profile URL is also accepted.",
                  "maxLength": 2048,
                  "minLength": 1,
                  "type": "string"
                }
              },
              "required": [
                "handle"
              ],
              "type": "object"
            },
            "queryParams": {
              "properties": {},
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        },
        "output": {
          "properties": {
            "example": {
              "type": "object"
            },
            "type": {
              "type": "string"
            }
          },
          "required": [
            "type"
          ],
          "type": "object"
        }
      },
      "required": [
        "input"
      ],
      "type": "object"
    }
  },
  "payment-identifier": {
    "info": {
      "required": false
    },
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "id": {
          "maxLength": 128,
          "minLength": 16,
          "pattern": "^[a-zA-Z0-9_-]+$",
          "type": "string"
        },
        "required": {
          "type": "boolean"
        }
      },
      "required": [
        "required"
      ],
      "type": "object"
    }
  }
}

Use it

curl

curl "https://api.socialfetch.dev/v1/instagram/profiles/:handle"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://api.socialfetch.dev/v1/instagram/profiles/:handle");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://api.socialfetch.dev/v1/instagram/profiles/:handle")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/3057.json, and this resource appears in /discovery/resources and /discovery/search.