Quick Start
This guide gets you from zero to a published landing page in under 5 minutes.
Prerequisites
- A Get AI Page account (free tier is enough)
- A description of your product or campaign
Step 1: Create a Project
- Go to Projects → click New Project
- Answer the four quick questions about your page goal, audience, product type, and description
- Hit Generate — the AI will create your project and first page automatically
The progress modal will show you live status while the AI works (typically 30–90 seconds).
Step 2: Review Your Page
Once generation completes, open the project to see your pages. Click any page to:
- Preview the live render
- Edit copy and component props
- Rearrange sections
- Change the colour scheme
Step 3: Publish
Click Publish on any page to make it live. Free projects deploy to a *.getaipage.com subdomain. Upgrade to Pro to connect your own domain.
API Reference
Create a project via API
curl -X POST https://api.getaipage.com/api/v1/projects/genai \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{
"framework_id": "<uuid>",
"genai_prompt": "{\"page_goal\":\"generate-leads\",\"target_audience\":\"b2b\",\"content_type\":\"digital-product\",\"page_name\":\"My SaaS\",\"page_description\":\"...\"}"
}'
Response:
{
"task_id": "uuid",
"status": "PENDING",
"message": "Project generation task accepted"
}
Poll task status
curl https://api.getaipage.com/api/v1/tasks/<task_id> \
-H "Authorization: Bearer <token>"
The status field transitions:
Rendering diagram…
Once status is SUCCESS, the result field contains project_id.
Authentication
All API endpoints (except public plan pricing) require a Bearer token obtained from Keycloak:
Rendering diagram…
Next Steps
- Platform Overview — architecture and features
- Blog — guides and best practices