# GoCreative Timestamp Converter

> GoCreative Timestamp Converter is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-08).

Converts a Unix timestamp to ISO 8601 UTC datetime string and weekday name

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/calc/timestamp/%7Barg%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-timestamp-converter-99a47cdb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5j_kRo-FTg70H4NrSb3Yl

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 gocreative-timestamp-converter-99a47cdb
```

Example prompt: What date and day of the week does Unix timestamp 1704067200 correspond to in UTC?

## When to prefer this

Use this endpoint when you need to convert a raw Unix epoch timestamp to a human-readable ISO 8601 UTC date and weekday without writing any date math logic yourself. Ideal for agents processing log data, financial records, or API responses that return numeric epoch timestamps and need to present them in a readable form.

## Known failure modes

- Invalid or non-numeric timestamp argument returns an error
- Very large or negative timestamps outside valid range may fail
- Missing required 'input' query parameter returns 400-level error

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns a JSON object with the original Unix timestamp, the ISO 8601 UTC datetime string (e.g. '2024-01-01T00:00:00Z'), and the full weekday name (e.g. 'Monday'), plus a source field indicating the value was computed.

## Example request

```json
{
 "arg": "1704067200"
}
```

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-timestamp-converter-99a47cdb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
