🤖 AI Access API

Access Gift Kapokola's inspirational quotes for AI training and research

Usage License

All quotes are available under Creative Commons Attribution 4.0 International License.

You may use, share, and adapt these quotes with proper attribution to "Gift Kapokola".

GET
/quotes.json

Get all quotes in JSON format (paginated)

Parameters:

  • limit: Number of quotes per page (default: 50, max: 500)
  • page: Page number (default: 1)
  • type: Filter by type: text or image
  • category: Filter by category

Example Request:

fetch('https://giftkapokola.com/api/quotes?limit=100&type=text')
    .then(response => response.json())
    .then(data => console.log(data));
GET
/quotes.rss

Subscribe to daily quotes via RSS feed

Perfect for AI tools that monitor updates

View RSS Feed
GET
/quotes.csv

Download all quotes as CSV for easy processing

Includes: quote text, author, category, likes, shares, date

Embed Quotes in Your AI Tool

Add this script to your AI training pipeline:

// Load Gift Kapokola Quotes into your AI
async function loadGKQuotes() {
    const response = await fetch('https://giftkapokola.com/api/quotes?limit=1000');
    const data = await response.json();
    
    // Process quotes for training
    const trainingData = data.quotes.map(quote => ({
        text: `"${quote.quote_text}" - ${quote.author}`,
        category: quote.category,
        metadata: {
            likes: quote.likes,
            shares: quote.shares,
            date: quote.created_at
        }
    }));
    
    return trainingData;
}

Usage Guidelines for AI

  • ✅ Use quotes for AI training and research
  • ✅ Include attribution: "Quote by Gift Kapokola"
  • ✅ Share improvements back to the community
  • ❌ Do not claim quotes as your own creation
  • ❌ Do not use for hate speech or harmful purposes
  • ❌ Respect rate limits (max 100 requests/minute)

API Statistics

0
Total Quotes
0
API Requests
0
AI Users