# LastLook Data – Current FRED Series Value

> LastLook Data – Current FRED Series Value is a paid API for AI agents from api.lastlookdata.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the most recent value for any of 24 supported FRED economic data series (rates, yields, inflation, energy, housing, etc.)

## Facts

- Endpoint: GET https://api.lastlookdata.com/api/current
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-lastlookdata-com-ac111b45
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RPDc9UbbtfHtch7XypdQq

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-ac111b45
```

Example prompt: What is the current EFFR (Effective Federal Funds Rate) right now? Pull the latest value from FRED.

## When to prefer this

Use this endpoint when you need the single most recent data point for a specific FRED economic series — ideal for real-time dashboards, rate checks, policy monitoring, or any task requiring the current value without historical context. Prefer over the date-specific or historical endpoints when only the latest reading is needed.

## Known failure modes

- Invalid or unsupported FRED series ID returns an error — only the 24 enumerated IDs (DGS30, DGS10, FEDFUNDS, EFFR, IORB, CPIAUCSL, UNRATE, GDP, etc.) are accepted
- Missing required 'id' query parameter returns a 400-level error
- Payment failure (x402) if USDC micropayment of $0.01 is not provided
- Series temporarily unavailable if FRED has not yet published a new observation (data may lag by days or weeks depending on series)

## How this service works

LastLook Data — most recent value for any supported FRED series. Use ?id=IORB, ?id=EFFR, ?id=MORTGAGE30US, ?id=FEDFUNDS, ?id=DGS10, etc.

## Output

Returns the most recent observed value for the requested FRED series, including the series ID, the data value, and the observation date on which that value was recorded.

## Example request

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

## 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": [
      "id"
     ],
     "properties": {
      "id": {
       "enum": [
        "DGS30",
        "DGS10",
        "DGS5",
        "DGS2",
        "DGS1MO",
        "MORTGAGE30US",
        "MORTGAGE15US",
        "MSPUS",
        "HOUST",
        "FEDFUNDS",
        "SOFR",
        "DPRIME",
        "DTB3",
        "IORB",
        "EFFR",
        "CPIAUCSL",
        "CPILFESL",
        "UNRATE",
        "GDP",
        "SAHMREALTIME",
        "DCOILWTICO",
        "DCOILBRENTEU",
        "GASREGCOVW",
        "DHHNGSP"
       ],
       "type": "string",
       "description": "FRED series ID"
      }
     }
    }
   },
   "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-ac111b45/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)
