API Documentation

Free and open API for accessing blog posts and site statistics. No authentication required.

Base URL

https://lscaturchio.xyz

Rate Limiting

No rate limiting currently. Please be respectful and don't abuse the API.

Response Format

All responses are JSON. Successful responses return 200 status code with data. Errors return appropriate status codes (404, 500) with error message.

Endpoints

Usage Examples

JavaScript / TypeScript

const response = await fetch('https://lscaturchio.xyz/api/v1/blogs?limit=5')
const { data, meta } = await response.json()

console.log(`Found ${meta.total} blog posts`)
data.forEach(blog => console.log(blog.title))

Python

import requests

response = requests.get('https://lscaturchio.xyz/api/v1/blogs',
                       params={'limit': 5})
data = response.json()

print(f"Found {data['meta']['total']} blog posts")
for blog in data['data']:
    print(blog['title'])

Let's Create Something Amazing Together

Whether you have a project in mind or just want to chat, I'm always open to discussing new opportunities and ideas.