You're three steps away from running your first Clid API call. No setup wizards, no config files, no scopes to pick. Ready?
If you don't have one yet, it takes 10 seconds — just an email, no password. We'll send you a one-time code to sign in, and you can set up a passkey later if you want to skip the code next time.
An API key is a long password that lets your code talk to Clid. One key does everything — buckets, databases, email, all of it. You only have to make one.
Give it a name (anything — "My first key", "Test", whatever helps you remember).
Then click Create key. You'll see a long string that starts with
clidkey_. Copy it right then — you won't see it again.
Paste your API key below and click "Run it". We'll call the Clid Cloud API and show you what comes back. This is the exact same call your code will make.
Or, in your own terminal (this is what your code will look like):
curl https://cloud.zylinkcorp.com.ng/api/cloud/buckets \
-H "Authorization: Bearer YOUR_API_KEY"
You should see a JSON response with your buckets (probably empty if you just signed up):
{
"buckets": []
}
Authorization header stays the same.
Create a D1 database and run SQL on it with your API key.
Store files in Clid Storage and fetch them back with a single HTTP call.
Use Clid Email to send transactional emails from your code.
Let people sign in to your app with their Clid account — two lines of HTML.
Full API reference, code examples for Node/Python/curl, and the OAuth flow if you need it.