# HEIC to PNG Image Converter

> HEIC to PNG Image Converter is a paid API for AI agents from organiccryptoyyc.com:8443, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Converts a HEIC/HEIF image (referenced by URL) to PNG format and returns image dimensions and conversion metadata

## Facts

- Endpoint: GET https://organiccryptoyyc.com:8443/v1/convert/heic-to-png
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heic-to-png-image-converter-e4aa219e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jKrL08ZauPf53P6tfpunZ

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 heic-to-png-image-converter-e4aa219e
```

Example prompt: Can you convert this HEIC photo to PNG for me? The image is at https://example.com/photos/IMG_5023.heic

## When to prefer this

Choose this endpoint when you need a simple, pay-per-call HEIC/HEIF to PNG conversion from a remote URL without managing your own image processing infrastructure. Particularly useful in agent workflows that encounter Apple device photos (iPhone/iPad HEIC format) that need to be normalized to PNG for downstream web, design, or storage use. Priced at $0.005 USDC per call via x402, making it cost-effective for low-to-moderate volumes.

## Known failure modes

- Invalid or inaccessible URL returns an error — the URL must be a publicly reachable http/https link
- Non-HEIC/HEIF image URL may cause a format mismatch error
- Network timeout if the source image URL is slow or unavailable
- Payment failure if USDC balance is insufficient for the $0.005 per-call fee
- Malformed URL query parameter returns a 400-level validation error

## How this service works

Real-device, multi-region site verification with screenshot proof, live Pocket Network Shannon relay-demand/tokenomics/validator-security data, and on-chain RPC snapshots across 38 chains -- Ethereum, Solana, BSC, and peaq natively, plus 34 more EVM chains via Pocket Network's free public gateway (Arbitrum, Base, Optimism, Polygon, Avalanche, zkSync, Linea, Scroll, Gnosis, and more) -- 54 metered x402 routes, priced and settled per call in USDC. Migrating to Acurast decentralized cloud compute for censorship-resistant hosting -- stay tuned.

## Output

Returns a JSON object with the image width (pixels), height (pixels), and a source label ('heic-to-png') confirming the conversion type. The PNG output is accessible or embedded depending on the API's response delivery method.

## 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",
       "description": "Absolute URL to a HEIC/HEIF image (http or https)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "width": 4032,
  "height": 3024,
  "source": "heic-to-png"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heic-to-png-image-converter-e4aa219e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from organiccryptoyyc.com:8443](https://www.zero.xyz/host/organiccryptoyyc.com%3A8443/llms.txt)
