Arduino as 433 MHz sender/receiver with REST api

I would like to use an Arduino as an 433 MHz sender/receiver with a REST web api to send signals and check if signals where received. The REST interface should be able to handle multiple concurrent requests and work them off one after another. Also the REST interface should not interfere while receiving signals.

I'am currently trying to do this with an Arduino Yun, but it seams that the Arduino Bridge does handle web requests a bit slowly. Is there maybe a better Arduino hardware to do this or even maybe a complete example including finished code to do this?

I think I found a good solution for this. I'am now using an ESP32 based board to act as a bridge between WIFI/REST and the 433 MHz hardware. The webserver on this board is very fast and receiving signals via interrupts is very accurate. With this hardware I was able to achieve a time per command of about 0.3 seconds to send a REST command via wifi, send the 433 signal and receive the http answer from the board.