DiscoverText API - Archive Exact Duplicates List

GET
https://api.discovertext.com/api/v1/exactdups/archive/{archive_id}
Return Value: A Collection of exact duplicate groups for the archive
{
    meta: {
        count: (item count),
        offset: (current offset),
        limit: (current limit)
    },
    singlesCount: (count of single items),
    items: [ { exact duplicate item }, { exact duplicate item }, ...],
    links: [ { paging links } ]
}
        
Where {exact duplicate item} is:
{
    groupId: (the group id, numeric),
    snippet: (group snippet text, string),
    itemCount: (count of items in the group, numeric)
}