# LastLook Data FX Dashboard — G10 Spot Rates & USD Strength Index

> LastLook Data FX Dashboard — G10 Spot Rates & USD Strength Index is a paid API for AI agents from api.lastlookdata.com, paid per call via x402, $0.35/call, status unknown (last checked 2026-09-13).

Returns all 9 G10 FX spot rates (EURUSD, GBPUSD, USDJPY, USDCHF, USDCAD, AUDUSD, NZDUSD, USDSEK, USDNOK) plus a 30-day USD strength index in a single bundle call.

## Facts

- Endpoint: GET https://api.lastlookdata.com/api/bundle/fx-dashboard
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-lastlookdata-com-8fba9a22
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zeW-LJsQ7MYZjcSOpjF7i

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 api-lastlookdata-com-8fba9a22
```

Example prompt: Give me the full G10 FX dashboard right now — all nine spot rates like EURUSD, GBPUSD, USDJPY, and the rest, plus the USD strength index versus the basket over the last 30 days.

## When to prefer this

Choose this endpoint when you need a comprehensive, single-call snapshot of all G10 FX spot rates together with a USD basket strength signal. Ideal for macro briefings, LLM context injection, or FX dashboards where you need all major pairs at once rather than querying each pair individually. Use the per-pair endpoint instead if you only need one specific currency pair or a historical date.

## Known failure modes

- Payment not provided or invalid x402 token → 402 Payment Required
- Network or upstream data unavailability → 503 Service Unavailable
- Rate limit exceeded → 429 Too Many Requests
- Malformed request headers → 400 Bad Request

## How this service works

LastLook Data — G10 FX dashboard: all 9 spot rates (EURUSD, GBPUSD, USDJPY, USDCHF, USDCAD, AUDUSD, NZDUSD, USDSEK, USDNOK) plus USD strength index vs basket (30d).

## Output

A bundle containing current spot rates for all 9 G10 currency pairs (EURUSD, GBPUSD, USDJPY, USDCHF, USDCAD, AUDUSD, NZDUSD, USDSEK, USDNOK) and a USD strength index computed against the G10 basket over the past 30 days, suitable for macro context injection or agent decision-making.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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",
     "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/api-lastlookdata-com-8fba9a22/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.lastlookdata.com](https://www.zero.xyz/host/api.lastlookdata.com/llms.txt)
