Bulk calling
# support
u
I've a use case that user wants to place sevral calls at once. I'm using: POST https://api.vapi.ai/call to do so [docs](https://docs.vapi.ai/api-reference/calls/create). Is there any rate limit associated with this API? If there is is one how will I know that I've reached the rate limit, and what cool down period I need to wait for?
v
@udAIan I'm glad to hear you're utilizing the VAPI to place multiple calls. Regarding your query on rate limits: Yes, most APIs, including VAPI, typically have a rate limit to prevent abuse and ensure fair usage among all users. The rate limit for the VAPI's Create Phone Call API is not explicitly mentioned in the context provided, so I would recommend checking the official documentation or contacting support for the specific rate limits applicable to your account or plan. If you reach the rate limit, APIs usually send an HTTP status code indicating that you have been rate-limited. Commonly, this is a
429 Too Many Requests
response. Along with this status code, there is often a
Retry-After
header included in the response which tells you how long to wait before making another request. If you need the exact details on the rate limit and the cool down period for the VAPI, please ask support for more info on this. They will be able to provide you with the most accurate and up-to-date information.
You can continue this conversation by mentioning me in the message.
u
is this documented somewhere in vapi docs: https://docs.vapi.ai
s
@udAIan As of know we don't have any rate limiting on POST /call/:id API but yeah you have to keep in min your concurrency limit.
2 Views