DiscoverText API - Project Exact Duplicates List

GET
https://api.discovertext.com/api/v1/exactdups/project/{project_id}
Return Value: A Collection of exact duplicate groups for the project
{
    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)
}