ToolAssay

Short Link Creator

Short Link Creator: Create a permanent short link on freeq.one (e.g. https://freeq.one/MySlug). Optional: custom slug, expires_at (ISO date) for a TTL link that auto-expires — same price. Returns short_url plus a one-time manage_secret that gates FREE stats (GET /tools/shortlink_stats with X-Link-Secret) and FREE deletion of the link. Store the secret — it is shown only at creation. Pay per call in USDC on Base via x402 — POST https://x402.freeq.one/tools/shortlink_create.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1061 msmedian answer time
$0.002listed price per call
$0.002price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://x402.freeq.one/tools/shortlink_create

CategoryCommerce and shopping
Provider hostx402.freeq.one
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days3 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.002 1061 ms

Example input (from the provider)

{
  "body": {
    "expires_at": "2027-01-01T00:00:00Z",
    "slug": "uuid-tool",
    "url": "https://imapp.blogspot.com/2026/08/uuid-generator-free-uuid-v4-v7-creator.html"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "description": "JSON request body. See GET /tools for the parameter catalog.",
          "properties": {
            "expires_at": {
              "description": "Optional ISO 8601 expiry; link 404s after this time. Omit for a permanent link.",
              "example": "2027-01-01T00:00:00Z",
              "type": "string"
            },
            "slug": {
              "description": "Optional custom slug (3-40 chars, a-z0-9-). Random if omitted.",
              "example": "uuid-tool",
              "type": "string"
            },
            "url": {
              "description": "Destination URL to shorten (http/https)",
              "example": "https://imapp.blogspot.com/2026/08/uuid-generator-free-uuid-v4-v7-creator.html",
              "type": "string"
            }
          },
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "headers": {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "mcpServerUrl": {
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "queryParams": {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "toolName": {
          "type": "string"
        },
        "transport": {
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "properties": {
            "result": {
              "description": "Tool output (JSON)"
            }
          },
          "type": "object"
        },
        "type": {
          "const": "json",
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON