Getting Started | Locci Scheduler

Locci Scheduler is a webhook scheduling platform that allows you to schedule HTTP requests to be executed at specific times or intervals.

1. Create an Account

curl -X POST https://api.scheduler.locci.cloud/api/v1/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email": "your-email@example.com", "password": "your-secure-password"}'

2. Login

curl -X POST https://api.scheduler.locci.cloud/api/v1/auth/login \
  -H "Content-Type: application/json" \
  -d '{"email": "your-email@example.com", "password": "your-secure-password"}'

Save the access_token from the response.

3. Generate an API Key

curl -X POST https://api.scheduler.locci.cloud/api/v1/auth/key \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -d '{"expiry_time_days": 60}'

Save the api_key securely - this is what you'll use in your applications.

4. Install an SDK

JavaScript/TypeScript:

npm install @locci/scheduler

Rust:

Add with Cargo toolchain

cargo add locci-scheduler

Or add the crate in Cargo.toml file

[dependencies]
locci-scheduler = "0.1.0"
tokio = { version = "1", features = ["full"] }

5. Configure Environment

# .env
LOCCI_SCHEDULER_URL=https://api.scheduler.locci.cloud
LOCCI_SCHEDULER_TOKEN=your-api-key-here

Next Steps

For detailed SDK usage, examples, and API reference:

Support