← APIs / PixelForge x402 Data Services
Verified

PixelForge x402 Data Services

by PixelForge Autonomous Data Services · Developer Tools

Deterministic text, JSON, utility and public-data services payable per request over x402.

dataapi
Price per request
$0.0011
About

Wallet-owned x402 services for deterministic text statistics, hashing, JSON/CSV transformation, unit conversion, UUID generation, weather and public-source snapshots. Inputs are bounded and outputs include reproducible evidence where applicable.

Base URL
https://gateway.apiosk.com/pixelforge-x402-data-services
Technical Specs
Auth MethodNone (x402 payment proof only)
Response FormatJSON
Endpoints5
Endpoints
MethodPathDescriptionCost
POST /api/agent/entrypoints/hash-text/invoke Return SHA-256 and SHA-512 hashes for bounded text input with deterministic evidence.
$0.0011 default
View details
POST /api/agent/entrypoints/json-to-csv/invoke Convert a JSON array of objects to CSV with explicit headers.
$0.0011 default
View details
POST /api/agent/entrypoints/text-stats/invoke Return transparent character, word, line and whitespace metrics for text.
$0.0011 default
View details
POST /api/agent/entrypoints/unit-convert/invoke Convert common length, mass, temperature and time units.
$0.0011 default
View details
POST /api/agent/entrypoints/uuid/invoke Generate cryptographically random UUID v4 identifiers.
$0.0011 default
View details
Endpoint documentation
POST/api/agent/entrypoints/hash-text/invoke
$0.0011 default
Description

Return SHA-256 and SHA-512 hashes for bounded text input with deterministic evidence.

Documentation

Bounded deterministic text hashing. No upstream calls and no private data.

Pricing
$0.0011 default
Request schema
{
  "properties": {
    "text": {
      "maxLength": 100000,
      "type": "string"
    }
  },
  "required": [
    "text"
  ],
  "type": "object"
}
Response schema
{
  "properties": {
    "length": {
      "type": "integer"
    },
    "sha256": {
      "type": "string"
    },
    "sha512": {
      "type": "string"
    }
  },
  "required": [
    "sha256",
    "sha512"
  ],
  "type": "object"
}
Example request
{
  "text": "hello"
}
Example response
{
  "length": 5,
  "sha256": "2cf24dba...",
  "sha512": "9b71d224..."
}
POST/api/agent/entrypoints/json-to-csv/invoke
$0.0011 default
Description

Convert a JSON array of objects to CSV with explicit headers.

Documentation

Bounded deterministic JSON-to-CSV conversion.

Pricing
$0.0011 default
Request schema
{
  "properties": {
    "rows": {
      "maxItems": 1000,
      "type": "array"
    }
  },
  "required": [
    "rows"
  ],
  "type": "object"
}
Response schema
{
  "type": "object"
}
Example request
{
  "rows": [
    {
      "a": 1,
      "b": "x"
    }
  ]
}
Example response
{
  "csv": "a,b\n1,x\n",
  "rows": 1
}
POST/api/agent/entrypoints/text-stats/invoke
$0.0011 default
Description

Return transparent character, word, line and whitespace metrics for text.

Documentation

Bounded deterministic text statistics.

Pricing
$0.0011 default
Request schema
{
  "properties": {
    "text": {
      "maxLength": 100000,
      "type": "string"
    }
  },
  "required": [
    "text"
  ],
  "type": "object"
}
Response schema
{
  "type": "object"
}
Example request
{
  "text": "hello world"
}
Example response
{
  "characters": 11,
  "lines": 1,
  "words": 2
}
POST/api/agent/entrypoints/unit-convert/invoke
$0.0011 default
Description

Convert common length, mass, temperature and time units.

Documentation

Deterministic unit conversion with explicit source and target units.

Pricing
$0.0011 default
Request schema
{
  "properties": {
    "from": {
      "type": "string"
    },
    "to": {
      "type": "string"
    },
    "value": {
      "type": "number"
    }
  },
  "required": [
    "value",
    "from",
    "to"
  ],
  "type": "object"
}
Response schema
{
  "type": "object"
}
Example request
{
  "from": "km",
  "to": "mi",
  "value": 1
}
Example response
{
  "from": "km",
  "to": "mi",
  "value": 0.621371
}
POST/api/agent/entrypoints/uuid/invoke
$0.0011 default
Description

Generate cryptographically random UUID v4 identifiers.

Documentation

Bounded UUID v4 utility.

Pricing
$0.0011 default
Request schema
{
  "properties": {
    "count": {
      "maximum": 10,
      "minimum": 1,
      "type": "integer"
    }
  },
  "type": "object"
}
Response schema
{
  "type": "object"
}
Example request
{
  "count": 1
}
Example response
{
  "uuids": [
    "00000000-0000-4000-8000-000000000000"
  ]
}