Global Feed Api Pagination

I’m looking for global feed pagination settings I wrote these codes and those are not working

    const data = await fetch(`${apiURL}me/global-feeds?` + new URLSearchParams({

        "targetId": id,
        "targetType": "community",
        "limit": 100,
        "offset": 10, // tried not working on me
        "skip": 10, // tried not working on me



    }), {

        method: "GET",
        headers: {
            ...defaultHeaders, "Authorization": `Bearer ${token}`
        }



    })

How can I skip posts or use pagination

Hi, the api will return "paging":{"previous":"abc","next":"def"} in the response, please use “next”:“def” value and append to the api endpoint to get the next page like this https://api.sg.amity.co/api/v4/me/global-feeds?token=def