# Strale OG Image Check

> Strale OG Image Check is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-15).

Checks whether a URL returns a valid Open Graph image (og:image meta tag) and whether that image is accessible

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/og-image-check
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-og-image-check-a11dd59a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vdY69wEKcRF7nC1K_8Vzk

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 strale-og-image-check-a11dd59a
```

Example prompt: Can you check if https://example.com/blog/my-post has a valid og:image tag and whether the image is actually accessible?

## When to prefer this

Choose this endpoint when you need to verify Open Graph image presence and accessibility for a specific URL with a tamper-evident audit trail. Prefer it over general HTML scraping tools when you specifically need og:image validation with compliance-grade logging, or when operating in a context where cryptographic audit records are required.

## Known failure modes

- Target URL is unreachable or returns non-200 status — og:image cannot be extracted
- URL has no og:image meta tag — returns absence result
- og:image URL present but image itself returns 404 or is inaccessible
- Malformed URL input — request rejected with validation error
- Timeout on slow-responding target URLs

## How this service works

The trust layer for AI agents — 250+ independently tested data capabilities across 27 countries. Execute capabilities via REST, MCP, A2A, or x402 micropayments. Every call returns an audit record with cryptographic chain hashing.

## Output

Returns whether the target URL exposes a valid og:image meta tag, the resolved og:image URL if present, whether that image URL is reachable (HTTP status), and a cryptographically hashed audit record for the call.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-og-image-check-a11dd59a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
