# EXIF Metadata Extractor

> EXIF Metadata Extractor is a paid API for AI agents from utilsforagents.com, paid per call via x402, $0.003/call, status unknown (last checked 2026-09-15).

Extracts structured EXIF metadata from a JPEG image, returning camera settings, GPS coordinates, timestamps, and more.

## Facts

- Endpoint: POST https://utilsforagents.com/v1/image/exif-summary
- Price: $0.003/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/utilsforagents-com-6d677105
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mmJEReb6nHT-rtQkDK-5E

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 utilsforagents-com-6d677105 -d '<json body>'
```

Example prompt: Can you pull the EXIF metadata out of this JPEG photo? I want to see the GPS coordinates, the timestamp, and the camera make and model.

## When to prefer this

Use this endpoint when you need to read metadata already embedded in a JPEG image, such as extracting GPS location, camera model, or shooting settings. Prefer this over generic image analysis when you specifically need structured EXIF/camera metadata rather than visual content recognition. Complementary to the EXIF-stripping endpoint on the same service when you need to inspect before cleaning.

## Known failure modes

- Image exceeds 5 MB limit — rejected with file size error
- Non-JPEG file format submitted — returns unsupported format error
- Image has no EXIF data embedded — returns empty or null fields
- Malformed or corrupt JPEG binary — returns parse error
- Missing or incorrect Content-Type header — returns bad request error

## How this service works

Extract EXIF metadata from a JPEG image. Returns structured fields including camera make/model, GPS coordinates, timestamp, aperture, shutter speed, ISO, and more. Useful for reading location data from photos, auditing camera settings, or checking what metadata is embedded in an image. Send the image as a raw binary body (Content-Type: image/jpeg) or multipart/form-data with field name 'file'. Max 5 MB.

## Output

Returns structured EXIF metadata fields including camera make/model, GPS coordinates (latitude/longitude), capture timestamp, aperture (f-stop), shutter speed, ISO, and other embedded metadata from the JPEG image.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "file": {
   "type": "string",
   "description": "JPEG image binary (up to 5 MB). Send as multipart/form-data with field name 'file', or as a raw binary body with Content-Type: image/jpeg."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "exif": {
   "gps": {
    "latitude": 37.7749,
    "longitude": -122.4194
   },
   "make": "Apple",
   "model": "iPhone 15 Pro"
  },
  "processingTimeMs": 1.2
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/utilsforagents-com-6d677105/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from utilsforagents.com](https://www.zero.xyz/host/utilsforagents.com/llms.txt)
