Multi item citation

Using API can we get citations for multiple items?

ie: https://api.zotero.org/users/xyz/items/top?include=citation&style=ieee
expected output (or something similar):
{
    {
        ...
        citation: "[1][2]"
    }
}
OR
{
    {
        ...
        citation: "[1]"
    },
    {
        ...
        citation: "[2]"
    },
}

current output:
{
    {
        ...
        citation: "[1]"
    },
    {
        ...
        citation: "[1]"
    },
}


basically, I want to insert citations for multiple items at a place and API returns data which I cannot use directly and user can use any style so handling this for so many styles can be a hassle. Is there anything I am missing? I couldn't find anything which can help me from API documentation.
Sign In or Register to comment.