Api lost dublin core element with element_sets filter

By using /api/elements
I’ve got meta dublinc core : Title
{
“id”:50,
“url”:“https://guarnido.nakalona.fr/api/elements/50”,
“order”:1,
“name”:“Title”,
“description”:“A name given to the resource”,
“comment”:"",
“element_set”:{
“id”:1,
“url”:“https://guarnido.nakalona.fr/api/element_sets/1”,
“resource”:“element_sets”
}
}

But I lost it when I use api/elements?element_set=1

I use omeka 2.3.
To show this problem on my website you can compare :
https://guarnido.nakalona.fr/api/elements?pretty_print
https://guarnido.nakalona.fr/api/elements?element_set=1&pretty_print

By default, the number of results is limited to 50 in the api. So you can have the next ones here:
https://guarnido.nakalona.fr/api/elements?element_set=1&page=2&pretty_print

Thanks a lot.
How can I find the number of pages available ?
By using “count” in https://guarnido.nakalona.fr/api/element_sets and modulo ?

You have the total in the headers of the response:

Omeka-Total-Results	55
1 Like

Ok ! Perfect.
Thank you Daniel_KM.