diff --git a/guides/using-parameters.mdx b/guides/using-parameters.mdx
index b4fd4f2..24e2fc2 100644
--- a/guides/using-parameters.mdx
+++ b/guides/using-parameters.mdx
@@ -44,6 +44,61 @@ Parameters can be referenced in many places throughout your Lightdash project:
7. **Additional Dimensions**: Use parameters in the SQL definition of an [additional dimension](/references/dimensions#additional-dimensions)
8. **Custom Dimensions**: Use parameters in [custom dimension](/references/custom-fields#custom-sql) definitions
+## Parameter types
+
+Parameters in Lightdash support different data types to help you work with various kinds of data. By default, all parameters are treated as strings, but you can convert them to other types as needed.
+
+### Supported parameter types
+
+Lightdash officially supports the following parameter types:
+
+- **String** (default): Text values
+- **Number**: Numeric values (integers and decimals)
+
+### Type conversion workarounds
+
+While not officially supported yet, you can work around for other data types via SQL type casting.
+To convert a parameter to a specific type, use the `::` syntax followed by the type name:
+
+```sql
+${lightdash.parameters.parameter_name}::type
+```
+
+