Skip to main content

UUID Generator API

Generate cryptographically secure UUID v4 identifiers with multiple formatting options. Perfect for generating unique identifiers for databases, APIs, and distributed systems.

Features

  • Multiple Formats: Standard, compact, braced, URN, Base64, and hexadecimal formats
  • Bulk Generation: Generate multiple UUIDs in a single request (up to 1000)
  • Security Options: Choose between standard and cryptographically secure random generation
  • Case Control: Option to convert output to uppercase
  • No Rate Limits: Unlimited requests

Quick Start

Generate a single UUID in standard format:
curl "https://api.sinaty.business/uuid/"
Generate 5 compact UUIDs with secure random:
curl "https://api.sinaty.business/uuid/?count=5&format=compact&secure=true"

Use Cases

  • Database Primary Keys: Generate unique identifiers for database records
  • API Request IDs: Create traceable request identifiers
  • File Naming: Generate unique filenames
  • Session Tokens: Create secure session identifiers
  • Distributed Systems: Ensure uniqueness across multiple services

Format Examples

FormatExample
Standard550e8400-e29b-41d4-a716-446655440000
Compact550e8400e29b41d4a716446655440000
Braced{550e8400-e29b-41d4-a716-446655440000}
URNurn:uuid:550e8400-e29b-41d4-a716-446655440000
Base64VQ6EAOKbQdSnFkRmVUAAA
Hex550e8400e29b41d4a716446655440000

Next Steps

I