Getting Started

Follow these steps to start using the Vista Sign API in minutes.

1. Create an Account

Sign up at http://localhost:3000/loginusing Google or GitHub. You'll automatically get a Free plan with 1,000 requests/month.

2. Generate an API Key

Navigate to Dashboard → API Keysand create a new key. Save the key securely — you won't be able to see it again.

3. Make Your First Request

curl -X POST http://localhost:3000/api/v1/example \
  -H "x-api-key: sk_your_api_key" \
  -H "Content-Type: application/json" \
  -d '{"input": "Hello, World!"}'

4. Explore the Response

{
  "success": true,
  "data": {
    "result": "Processed: HELLO, WORLD!",
    "processedAt": "2026-03-23T12:00:00.000Z"
  }
}

Next Steps

  • Authentication — Learn about API key management and security best practices.
  • API Reference — See all available endpoints and parameters.
  • Errors — Understand error codes and how to handle them.