snapi.snaps.tag
Returns paged records with snaps that are linked to provided tag.
Request:
http://api.phpsnaps.com/snaps/tag/tag_name/1/?key=my_key
Response:
<?xml version="1.0" encoding="utf-8" ?>
<rsp stat="1">
<snap title="[string]" date="[int]" description="[string]" owner="[string]" url="[uri]" />
...
</rsp>
<rsp stat="1">
<snap title="[string]" date="[int]" description="[string]" owner="[string]" url="[uri]" />
...
</rsp>
Arguments
tag_name: The tag. (required)
page_num: The number of page to return (10 records per page). (optional)
Returns
Elements named snap.
Attributes
- title: Snap's title
- date: Date when snap was added in unix time.
- description: Snap's description
- owner: Username of the user who added the snap
- uri: The URL pointing to the actual snap on PHPSnaps site
Return to snAPI documentation
