Chain id of polygon

When I try to enter the chainId of polygon (it is 137 according to google) I get the error: Invalid chainId: 137

This is the CURL I use:
curl --request PUT
–url ‘https://api.moralis-streams.com/streams/evm’
–header ‘accept: application/json’
–header ‘X-API-Key: xxx’
–header ‘content-type: application/json’
–data ’
{
“webhookUrl”: “https://webhook.site/#!/fe519dd7-b23f-4b79-af5c-24c3648e8ce8/5436504d-bd6e-4bdb-a8c3-709cd679ffbf/1”,
“description”: “aaa”,
“tag”: “aaa”,
“includeContractLogs”: true,
“chainIds”: [
“137”
]
}
’

Streams API in particular allows only chain ids in hex

1 Like