Skip to main content

1. Get your API key

Sign up for free

Create an account and get your API key instantly. No credit card required.

2. Make your first request

curl "https://api.tinyfn.io/v1/generate/uuid" \
  -H "X-API-Key: YOUR_API_KEY"

3. Get your response

{
  "uuid": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
  "version": 4,
  "variant": "RFC 4122"
}

Try more endpoints

Validate an email

curl "https://api.tinyfn.io/v1/validate/[email protected]"

Generate a password

curl "https://api.tinyfn.io/v1/generate/password?length=16"

Hash a string

curl "https://api.tinyfn.io/v1/hash/sha256?text=hello"

Get a dad joke

curl "https://api.tinyfn.io/v1/fun/dad-joke"

Next steps