Snibb.link

rare insight mined from data
Overview
Snibb.link provides access to AI-generated insights called Snibbits through simple JSON endpoints. Each Snibbit dataset has its own API endpoints for accessing current and historical insights.
Available Snibbit APIs
The following Snibbit datasets are available via API:
Current Snibbits Endpoint
Each Snibbit site provides a JSON endpoint for accessing the current Snibbit:
GET /data/snibbits.json
Returns the current active Snibbit in JSON format. The response structure varies by dataset but typically includes the Snibbit text, category information, and timestamp.
Historical Snibbits Endpoint
Access archived Snibbits through the history API:
GET /api/get-archives.php
Returns all archived Snibbits grouped by date. This endpoint is used by the History pages on each Snibbit site.
Response Format
Snibbit responses are returned as JSON. Example structure:
[ { "snibbit": "Insight text here...", "category": "Category Name", "category_value": "Specific Value", "timestamp": 1234567890 } ]
Update Frequency
Each Snibbit has its own unique creation time, which varies depending on when it was generated. The time since each Snibbit was created (duration) is displayed directly under the Snibbit text on each site. Previous Snibbits are archived before new ones are generated. It's recommended to implement appropriate caching strategies when consuming these APIs.
Rate Limiting
Currently, there are no rate limits on public endpoints. However, please use these APIs responsibly and implement appropriate caching to avoid unnecessary requests.
Contact
For API questions or integration support, please contact us at input@snibb.link.