Does anyone know the Facebook chatbot send limit?

If a seller needs to send Facebook messages via chatbot, what is the speed limit? This is a link to this topic, but it does not talk about the actual limit: https://developers.facebook.com/docs/messenger-platform/send-api-reference#errors

This is the graphics api speed limit: https://developers.facebook.com/docs/graph-api/advanced/rate-limiting

Thanks!

+6
source share
2 answers

There are two main types of speed limits that your application may encounter: speed limits at the application level and speed limits at the page level .

At the application level: 200 calls / person / hour which will give you an error code: 4

At page level limit: 4800 calls / person / 24 hours which will give you an error code: 32

Excellent description Link is available here.

+6
source

Unfortunately, I can’t point to any document on Facebook, but in my experience, this is about ~ 200 posts per second .

Calling an API with a large number of messages will result in 400 Bad Request

{"error":{"message":"(#613) Calls to this api have exceeded the rate limit.","type":"OAuthException","code":613}} 
+1
source

All Articles