Alice Aprilio

Beta API

AI-powered API for data enrichment and description generation across any industry.

POST https://api.aliceapril.io/beta/enrich
Enrich any data
Send any JSON structure and receive the same structure with enriched information.
Alice first looks at existing data to enrich your content. And then uses some black magic to make it better.
Works with any valid JSON structure - no specific format required.
curl -X POST https://api.aliceapril.io/beta/enrich \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Trek Mountain Bike X-Caliber 9",
"price": 1500,
"brand": "?",
"model": "?",
"category": "?"
}'
curl -X POST https://api.aliceapril.io/beta/enrich \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"address": "Storgatan 15, Södermalm, Stockholm",
"description": "Charming 75 sqm apartment built 1921",
"rent": 18000,
"rooms": "3 rooms",
"area": "?",
"district": "?",
"year_built": "?"
}'
curl -X POST https://api.aliceapril.io/beta/enrich \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"job_title": "Senior Full Stack Developer at Tech Startup",
"description": "We need a React/Node.js expert for our Stockholm office",
"salary": "650000 SEK/year",
"location": "Stockholm, Sweden",
"company": "?",
"tech_stack": "?",
"experience_level": "?"
}'
POST https://api.aliceapril.io/beta/describe
Generate descriptions
Send any JSON structure and receive professional descriptions for listings, websites, or marketing.
Works with any valid JSON structure - no specific format required.
curl -X POST https://api.aliceapril.io/beta/describe \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "X-Format: plain" \
-d '{
"name": "Trek Mountain Bike X-Caliber 9",
"brand": "Trek",
"price": 1500,
"category": "mountain bike"
}'
curl -X POST https://api.aliceapril.io/beta/describe \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "X-Format: markdown" \
-d '{
"address": "Storgatan 15, Södermalm, Stockholm",
"rent": 18000,
"area": "75 sqm",
"rooms": "3 rooms"
}'
curl -X POST https://api.aliceapril.io/beta/describe \
-H "X-API-Key: YOUR_API_KEY" \
-H "Content-Type: application/json" \
-H "X-Format: html" \
-d '{
"position": "Senior Full Stack Developer",
"company": "Tech Startup",
"location": "Stockholm",
"salary": "650000 SEK/year"
}'
API Key Required:
Contact us to receive your personal API key to start using the service.