# SocialFetch Instagram Basic Profile by Numeric ID

> SocialFetch Instagram Basic Profile by Numeric ID is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Fetches a lightweight Instagram profile using a numeric user ID.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/instagram/profiles/:userId/basic
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-instagram-basic-profile-by-numeric-id-9f0f7c82
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FnbKhhzTx_RGCtynVvIMM

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-instagram-basic-profile-by-numeric-id-9f0f7c82
```

Example prompt: Pull the basic Instagram profile for numeric user ID 123456789 — I need their username, bio, and follower count.

## When to prefer this

Use this endpoint when you already have the Instagram numeric user ID and need lightweight profile data quickly. Prefer the handle-based endpoint (instagram.profile.get) when you only have a username/handle and not the numeric ID. This endpoint is optimized for ID-based lookups and avoids the extra step of resolving a handle to an ID.

## Known failure modes

- Invalid or non-numeric userId returns a 400 or validation error
- User ID does not exist on Instagram returns a 404 not found
- Rate limit exceeded returns a 429 too many requests
- Payment not provided or insufficient funds returns a 402
- Private or deactivated account may return limited or no data

## How this service works

Get a lightweight Instagram profile by numeric user ID when you already have the id — prefer instagram.profile.get for handle lookups.

## Output

A lightweight Instagram profile object for the specified numeric user ID, including fields such as username, display name, bio, follower count, and other basic profile metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "userId"
     ],
     "properties": {
      "userId": {
       "type": "string",
       "pattern": "^\\d+$",
       "maxLength": 32,
       "minLength": 1,
       "description": "Instagram numeric user id to look up."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-instagram-basic-profile-by-numeric-id-9f0f7c82/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
