7

Are there any upper limit on the number of short URL that can be created in Firebase Dynamic link?

https://firebase.google.com/docs/dynamic-links/android/create#create-a-dynamic-link-from-parameters

Such as shortened URL is made in units from hundreds to thousands per a day...

yuki312
  • 267
  • 2
  • 3
  • 10

2 Answers2

18

The quota is listed in the Dynamic Links documentation:

Requests are limited to 50 queries per second 5 requests/IP address/second, and 100,000 200,000 queries per day. If exceeded, then the response will return HTTP error code 429.

To request for more quota, fill out this form.

So, up to 5 requests/IP address/second, and 200,000 per day. (as of August 15th 2019)

Community
  • 1
  • 1
Jake Lee
  • 7,549
  • 8
  • 45
  • 86
8

There is no documented limit to the number of short links you can make in a day. But the service is monitored for abusive behavior.

From the comments: If your use case involves creating hundreds of short links per second, it is best to reach out to Firebase support to discuss your requirements.

Frank van Puffelen
  • 565,676
  • 79
  • 828
  • 807
  • 2
    Frank, this is correct. At the same time there is a limit how many requests per second you can make. This number is quite high. If use case involves creation hundreds of short links per second, it is best to reach to Firebase Support to discuss your requirements. – Oleksiy Ivanov Aug 08 '17 at 05:35
  • 8
    Quick update after syncing with teammates. Here you can find quota for Firebase Dynamic Links REST API https://firebase.google.com/docs/dynamic-links/rest (see very bottom). iOS and Android shortening API are sharing the same quota. From there: Requests are limited to 50 queries per second and 100,000 queries per day. If exceeded, then the response will return HTTP error code 429. To request for more quota, fill out this form. – Oleksiy Ivanov Aug 08 '17 at 17:56
  • what about hundreds per day? i think my app will create around 100-1000 links per day – Rafael Lima Dec 26 '18 at 06:45