Hello,
The API documentation for the getType response specifies the mints.id field as an integer, but it's being returned as a string:
$ curl -X GET "https://api.numista.com/v3/types/99700" -H "Numista-API-Key: <APIKEY>" | jq
{
"id": 99700,
"url": "https://en.numista.com/99700",
"title": "¼ Dollar "Washington Quarter" (George Rogers Clark National Historical Park, Indiana)",
…
"mints": [
{
"id": "10",
"name": "United States Mint of Denver"
},
{
"id": "11",
"name": "United States Mint of Philadelphia"
},
{
"id": "12",
"name": "United States Mint of San Francisco"
}
]
}
Compare it to the id field of the response which is being returned as an integer, consistent with the documentation.