Skip to content
APISeeker
GET/v1/generate

SHA-1 Generator

Generate SHA-1 hashes from text via a free Host API.

Part of SHA-1 Generator· Rate limits: 60 req/min

Parameters

  • textquerystringrequired

    Input text to hash

  • X-SEEKER-Keyheaderstringrequired

    Your API Seeker key

Code examples

cURL
curl -s "https://sha1gen.apiseeker.com/v1/generate" \
  -H "X-SEEKER-Key: YOUR_API_KEY"

Response

JSON
{
  "success": true,
  "data": {
    "input": "hello",
    "algorithm": "SHA-1",
    "hash": "aaf4c61ddcc5e8a2dabede0f3b482cd9aea9434d"
  },
  "request_id": "req_example"
}

Errors

  • 400Invalid or missing parameters
  • 401Missing or invalid API key
  • 429Rate limit exceeded

Try this endpoint

API Playground

SHA-1 Generator

Login required
Live testing requires an account. Log in or create an API key to send requests. Docs and snippets stay available without login.
GETsha1gen.apiseeker.com
https://sha1gen.apiseeker.com/v1/generate
Log in to test endpoint
Status: Latency:

Response headers

Log in to run a test and see headers.

Response body

Log in required for live testing.

Generated snippets

cURL
curl -s "https://sha1gen.apiseeker.com/v1/generate" \
  -H "X-SEEKER-Key: YOUR_API_KEY"