Sent token based request to API

I have a Django rest framework with a simple token-based auth.
I’m getting the token key but I can’t for the life of me make a request with it to the API.
This is my request.

Just for completeness, the key:

I’ve tried using the auth section in the app as seen in the picture and I also tried adding it as header alone and got the same result.

1 Like

You need to create a POST request and your request body must contain the key in the JSON format specified in the documentation.

You are currently sending your token in the headers but this API expects the token in the body.