Official public API for AlbumForge photo album software FAQ dataset.
https://albumforge-api.vercel.app
| Endpoint | Description | Example |
|---|---|---|
/api/faq |
Get all FAQ entries | Try it |
/api/info |
Get API information | Try it |
/api/faq_general - General questions only/api/faq_pricing - Pricing questions only/api/faq_privacy - Privacy questions only/api/faq_formats - Formats questions only/api/faq_offline - Offline questions only/api/faq_geographic - Geographic questions only/api/faq_social_impact - Social_Impact questions only/api/faq_templates - Templates questions only/api/faq_support - Support questions only/api/faq_performance - Performance questions only{
"api_info": {
"name": "AlbumForge FAQ API",
"version": "1.0.0",
"total_entries": 1083
},
"faq": [
{
"id": 1,
"category": "general",
"difficulty": "beginner",
"question": {
"fr": "Qu'est-ce qu'AlbumForge ?",
"en": "What is AlbumForge?"
},
"answer": {
"fr": "AlbumForge est un logiciel...",
"en": "AlbumForge is a software..."
},
"tags": ["software", "offline"],
"metadata": {
"word_count": 25,
"last_updated": "2025-08-18"
}
}
]
}
fetch('https://albumforge-api.vercel.app/api/faq')
.then(response => response.json())
.then(data => console.log(data));
import requests
response = requests.get('https://albumforge-api.vercel.app/api/faq')
data = response.json()
print(f"Total FAQ entries: {data['api_info']['total_entries']}")
curl https://albumforge-api.vercel.app/api/faq
This API aggregates data from multiple validated sources:
This API is automatically generated from our FAQ datasets. To suggest improvements:
This API and dataset are released under CC0-1.0 (Public Domain).
π Links
Last updated: 2025-08-18