
Simple API for Yuri Content
lesbians.ink
Access a curated collection of yuri artwork through our API. We respect artist rights and provide proper attribution for all content.
Respectful Integration
Our API is designed to make yuri artwork accessible while ensuring proper attribution to artists. Every response includes essential information about the original creator and source.
Full artist attribution and source links
Simple, open API with no authentication
Comprehensive metadata in JSON format
Example Request
// Fetch artwork with full attribution
const response = await fetch(
'https://lesbians.ink/api/posts?category=sfw_artwork'
);
const data = await response.json();
// Example response:
{
"success": true,
"data": [
{
"post_id": "yuri94052",
"post_author": "Airi Hio",
"author_url": "https://example.com/...",
"post_url": "https://example.com/...",
"image_url": "https://content.lesbians.ink/...",
"category": "sfw_artwork",
"added_at": "2024-04-01T12:00:00"
}
]
}