dpazuic / curator_io
Library used to communicate with Currator.io Social media aggregation API
Installs: 42
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/dpazuic/curator_io
This package is auto-updated.
Last update: 2026-02-11 21:17:10 UTC
README
Use with composer by including include_once('vendor/autoload.php'); on your project page.
##Instantiate curator_io
Instantiate curator_io by creating a new instance of \dpazuic\curator_io(YOUR_API_KEY);. Note, replace YOUR_API_KEY with the API key curator_io provides you.
Use methods
Use any of the included methods Be mindful that some of the methods require extra parameters to be passed
include_once('vendor/autoload.php'); $curatorIO = new \dpazuic\curator_io("SOME_KEY"); // Get Sources $curatorIO->getSources(); // Get Feeds $curatorIO->getFeeds(); // Get All Posts $curatorIO->getAllPosts("SOME_FEED_ID"); // Get first 100 Posts $curatorIO->getPosts("SOME_FEED_ID"); // Get next 30 Posts (after the first 100 posts) $curatorIO->getPosts("SOME_FEED_ID", 30, 100);