Client Error

HTTP 415

Unsupported Media Type

The media format of the requested data is not supported by the server.

What This Means

Your Content-Type header doesn't match what the server expects, or you're sending data in the wrong format.

Common Causes

Missing Content-Type header

Sending JSON without application/json

FormData without multipart/form-data

Server only accepts specific formats

How to Fix It

1

Set correct Content-Type header

2

Use application/json for JSON bodies

3

Use multipart/form-data for file uploads

4

Check API documentation for accepted formats

How DevConsole Helps

DevConsole's HTTP Header Analyzer shows your request headers. Easily add or modify Content-Type.

Get DevConsole Pro

Frequently Asked Questions

What does HTTP 415 Unsupported Media Type mean?

Your Content-Type header doesn't match what the server expects, or you're sending data in the wrong format.

How do I fix a 415 error?

Set correct Content-Type header Use application/json for JSON bodies Use multipart/form-data for file uploads Check API documentation for accepted formats

Is a 415 error my fault?

Yes, 415 is a client error. This means the issue is with the request being sent, not the server.