Docs / Quick Start

Quick Start Guide

Welcome to the Alinflow Developer API. This guide will help you authenticate and make your first request to manage your domains programmatically.

Pro Plan Required

API access is available exclusively for Pro plan subscribers. Please upgrade your account in the dashboard to generate your API keys.

Base URL

All API requests should be prefixed with the following base URL:

https://api.alinflow.com/v1

Authentication

Alinflow uses Bearer Token authentication. You must include your API token in the Authorization header of every request.

Header Format

Authorization: Bearer <YOUR_API_TOKEN>
Content-Type: application/json

Example Request

Here is a simple curl command to test your connection:

curl -X GET https://api.alinflow.com/v1/auth/me \
  -H "Authorization: Bearer <YOUR_TOKEN>" \
  -H "Content-Type: application/json"