API → Item
- get_item
- get_recently_consumed_items
- get_recently_consumed_items_by_slice
- get_people_slice_options
- get_popular_items
get_item
Returns the Item with the given id.
Arguments:- api_key (required)
- id (required)
An Example Response:
<?xml version="1.0" encoding="UTF-8"?> <ITEM OBJECT>
The response contains this common object: Item
Demo: /service/get_item
get_recently_consumed_items
Returns list of most recent Listed Items.
Arguments:- api_key (required)
- product (optional, Options: book, album, movie, food, other. Defaults to “all”)
An Example Response:
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://allconsuming.com/xml/2005/rc#">
<title>Recently consumed items on All Consuming</title>
<REQUEST OBJECT>
<PAGINATION OBJECT>
<recently_consumed number="15">
<LIST_ITEM OBJECT>
<LIST_ITEM OBJECT>
<LIST_ITEM OBJECT>
</recently_consumed>
</feed>
The response contains this common object: List Item
Demo: /service/get_recently_consumed_items
get_recently_consumed_items_by_slice
Returns list of most recent Listed Items.
Arguments:- api_key (required)
- product (optional, Options: book, album, movie, food, other. Defaults to “all”)
- people_slice_key (optional. Defaults to “auto.everyone”. Use get_people_slice_key service call to get the full list of available options)
An Example Response:
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://allconsuming.com/xml/2005/rc#">
<title>Recently consumed items on All Consuming</title>
<REQUEST OBJECT>
<PAGINATION OBJECT>
<recently_consumed number="15">
<LIST_ITEM OBJECT>
<LIST_ITEM OBJECT>
<LIST_ITEM OBJECT>
</recently_consumed>
</feed>
The response contains this common object: List Item
Demo: /service/get_recently_consumed_items_by_slice
get_people_slice_options
Returns list of people_slice_key options used as a argument for the get_recently_consumed_items_by_slice call.
Arguments:- api_key (required)
An Example Response:
<?xml version="1.0" encoding="UTF-8"?> <REQUEST OBJECT> <options number="3"> <OPTION OBJECT> <OPTION OBJECT> <OPTION OBJECT> </options>
The response contains this common object: Option
Demo: /service/get_people_slice_options
get_popular_items
Returns list of most popular Items.
Arguments:- api_key (required)
- product (optional, Options: book, album, movie, food, other. Defaults to “all”)
An Example Response:
<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://allconsuming.com/xml/2005/rc#">
<title>Recently consumed items on All Consuming</title>
<REQUEST OBJECT>
<PAGINATION OBJECT>
<items number="15">
<ITEM OBJECT>
<ITEM OBJECT>
<ITEM OBJECT>
</items>
</feed>
The response contains this common object: Item
