> For the complete documentation index, see [llms.txt](https://docs.cartesi.io/llms.txt)

---
id: int
title: Int
hide_table_of_contents: false
---


The Int scalar type represents non-fractional signed whole numeric values. It can represent values between -(2^31) and (2^31 - 1), inclusive. This type is suitable for most counting or indexing needs within the API.

```graphql
scalar Int
```

Range: `-2,147,483,648` to `2,147,483,647`.

Examples: `42`, `17`, `0`.




