Fetch API allows sending data to the server in different formats.
The format depends on backend requirements and application type.
One common method is sending data as URL encoded format.
JSON format is widely used in modern APIs.
FormData is used when sending form values or files.
Fetch automatically handles multipart data when using FormData.
Choosing the correct data format is important for proper server communication.