If I use postman to create the request it's all good, tried all kinds of combinations, added host
I'm using Software serial for arduino -> esp. Baud rate is 9600
wifi.println("AT+CIPSTART=\"TCP\",\"192.168.1.100\",80");
Serial.println("AT+CIPSTART=\"TCP\",\"192.168.1.100\",80");
if(wifi.find("Connected")) {
Serial.println("Connected ...");
}
String data="POST /api/temp \r\n"
"Content-Type: application/x-www-form-urlencoded\r\n"
"&title=sometitle&type=temp&body=20\r\n\r\n";
ready="AT+CIPSEND="; //length
ready+=data.length();
sendData(ready);
Serial.println(data);
wifi.println(data);