# Solar Exposure Advisor

> Solar Exposure Advisor is a paid API for AI agents from store.cryptotradecalc.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Computes safe sun exposure duration in minutes based on UV index and SPF for a given skin type and city

## Facts

- Endpoint: GET https://store.cryptotradecalc.com/api/solar-exposure
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solar-exposure-advisor-c70ddcd6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_X6a8AAk7AUU4FDfiPaTaB

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 solar-exposure-advisor-c70ddcd6
```

Example prompt: How many minutes can someone with skin type 2 safely stay in the sun in Miami if they're wearing SPF 50?

## When to prefer this

Use this endpoint when you need a quick, personalized sun exposure safety calculation combining geographic UV data with skin type and SPF. Prefer this over generic UV index lookups when the output must be a human-readable recommendation in minutes rather than a raw UV number.

## Known failure modes

- Unknown or misspelled city name returns an error or empty result
- Invalid skin type string not matching expected enum values returns a validation error
- Missing required query parameters returns a 400 bad request
- UV index data unavailable for the requested city results in a degraded or null response
- Upstream UV data source timeout causes delayed or failed response

## How this service works

solar-exposure-advisor: Computes safe sun exposure minutes based on UV index and SPF for a given skin type at any city

## Output

Returns the computed number of safe sun exposure minutes for the given city, skin type, and SPF value, factoring in the current or derived UV index for that location.

## 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": {
      "city": {
       "type": "string"
      },
      "skinType": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solar-exposure-advisor-c70ddcd6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from store.cryptotradecalc.com](https://www.zero.xyz/host/store.cryptotradecalc.com/llms.txt)
