# Random Uuid Generate a random UUID by calling a third-party HTTP API. This is a paid API service exposed by Server402 for AI agents, MCP clients, OpenAPI importers, and applications. Call the endpoint once without payment to receive HTTP 402 payment instructions, complete payment, then retry with the returned payment token or x402 signature. ## Invocation - Service ID: `random-uuid` - Canonical service ID: `random-uuid` - Method: `GET` - Endpoint: `https://aivps.lat/api/tools/random-uuid` - Service page: https://aivps.lat/services/random-uuid - OpenAPI: https://aivps.lat/openapi.json - Catalog search: https://aivps.lat/api/catalog/search?q=random-uuid - MCP endpoint: https://aivps.lat/mcp - MCP tool: `random_uuid` ## Pricing And Payment - Price: USD 0.05 - Billing mode: `per_call` - Max calls per payment: `1` - Payment provider: `x402_facilitator` - Payment flow: call without payment, receive `402 Payment Required`, pay, then retry with `X-Payment-Token` or `PAYMENT-SIGNATURE`. - Payment hint: Create a payment with POST /api/payments using serviceId="random-uuid", then pass the returned token in X-Payment-Token or MCP paymentToken. ## Use Cases - Generate unique IDs - Create test identifiers - Produce random UUID values ## Keywords uuid, random id, identifier, generate uuid ## Input Schema ```json { "properties": {}, "type": "object" } ``` ## Output Schema ```json { "properties": { "uuid": { "type": "string" } }, "type": "object" } ``` ## Example Request ```json null ``` ## Example Response ```json { "uuid": "496e23f6-ae40-4518-b3fc-8320651f4089" } ```