# SocialFetch Facebook Profile Lookup

> SocialFetch Facebook Profile Lookup 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-14).

Fetches a public Facebook profile or Page's data by URL or username

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/facebook/profiles
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-facebook-profile-lookup-2de63781
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_U0_BN7xyIocRwsEvfl_6l

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-facebook-profile-lookup-2de63781
```

Example prompt: Pull up the public Facebook page info for 'https://www.facebook.com/nasa' — I want the profile details and business hours if they're listed.

## When to prefer this

Use this endpoint when you need structured data from a specific public Facebook profile or business page and you already have the URL or username. Prefer this over manual web scraping or generic browser automation when you need reliable, parsed profile metadata including optional business hours.

## Known failure modes

- Private or restricted Facebook profile returns no data or an error
- Invalid or malformed Facebook URL returns a validation error
- Facebook page that no longer exists returns a not-found error
- Rate limiting or payment failure returns a 402 or 429 error
- Profile temporarily unavailable due to Facebook anti-scraping measures

## How this service works

Get a Facebook profile or Page by URL or username.

## Output

Returns structured data about the Facebook profile or page including name, bio, follower/like counts, page category, contact info, and optionally structured business hours when available.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "maxLength": 4096,
       "minLength": 1,
       "description": "Facebook public profile or page URL to look up."
      },
      "includeBusinessHours": {
       "type": "boolean",
       "description": "Optional: include structured business hours in the response when available."
      }
     }
    }
   },
   "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-facebook-profile-lookup-2de63781/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)
