<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Dropbox API rate limits in Dropbox API Support &amp; Feedback</title>
    <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183719#M7659</link>
    <description>&lt;P&gt;Thanks&amp;nbsp;&lt;STRONG class="comment-author" title="Gregory"&gt;Gregory,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;In my code I am actually trying to get all the folder and file details for each user, and Also to get shared details for each file and folder. I have around 50K files. In case sequential execution everything works as expected. If I try to list files and folders with multiple process then I am hitting rate limits. Here I am trying to run 3 processes at a time.&lt;/P&gt;
&lt;P&gt;So In this case just wanted to confirm, If I do some amount of calls in the same time. Does it hit rate limits?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Murali&lt;/P&gt;</description>
    <pubDate>Fri, 19 Aug 2016 00:13:34 GMT</pubDate>
    <dc:creator>Sophia S.3</dc:creator>
    <dc:date>2016-08-19T00:13:34Z</dc:date>
    <item>
      <title>Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183714#M7654</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am hitting dropbox API rate limit and I can see 429 status code, I know that dropbox rate limit is per user basis.&lt;/P&gt;
&lt;P&gt;I just wanted to know the number, How many API calls are allowed per user per day.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Murali&lt;/P&gt;</description>
      <pubDate>Wed, 29 May 2019 09:30:47 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183714#M7654</guid>
      <dc:creator>Sophia S.3</dc:creator>
      <dc:date>2019-05-29T09:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183715#M7655</link>
      <description>&lt;P&gt;The documentation suggests that reasonable use should never hit the rate limiting level, so I wonder what you are doing &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;
&lt;P&gt;It also says you need to contact the developer support team to discuss your requirements:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.dropbox.com/developers-v1/core/bestpractices" rel="nofollow noreferrer"&gt;https://www.dropbox.com/developers-v1/core/bestpractices&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2016 15:54:14 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183715#M7655</guid>
      <dc:creator>Richard P.</dc:creator>
      <dc:date>2016-08-17T15:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183716#M7656</link>
      <description>&lt;P&gt;The Dropbox API does have a rate limiting system, but we don't have any specific numbers documented. It is only designed to prevent abuse though, and is accordingly very generous. You generally don't need to worry about hitting it in normal use, as Richard noted.&lt;/P&gt;
&lt;P&gt;Also note that not all 503s indicate rate limiting, but in any case that you get a 429 or 503 the best practice is to retry the request, respecting the Retry-After header if given in the response, or using an exponential back-off, if not.&lt;/P&gt;
&lt;P&gt;If you inspect the body of the response, it may contain more specific information about the issue (e.g., explaining if it's explicit rate limiting, or some different issue).&lt;/P&gt;
&lt;P&gt;In any case, if you can share some context and let me know what endpoints you're seeing this with, I'll be happy to offer any advice I can about potentially optimizing your implementation.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Aug 2016 23:52:50 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183716#M7656</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-08-17T23:52:50Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183717#M7657</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;STRONG class="comment-author" title="Gregory"&gt;Gregory &lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Here is the status of the error that I saw.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Status code&lt;/STRONG&gt; : 429&lt;BR /&gt;&lt;STRONG&gt;Error Description&lt;/STRONG&gt;: {u'error_summary': u'too_many_requests/...', u'error': {u'reason': {u'.tag': u'too_many_requests'}, u'retry_after': 300}}&lt;/P&gt;
&lt;P&gt;It would be very useful if you can share how the rate limits are calculated.&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Murali&lt;/P&gt;</description>
      <pubDate>Thu, 18 Aug 2016 12:06:41 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183717#M7657</guid>
      <dc:creator>Sophia S.3</dc:creator>
      <dc:date>2016-08-18T12:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183718#M7658</link>
      <description>&lt;P&gt;The rate limit system is based on the rate of API calls from an app-user pair over an amount of time.&lt;/P&gt;
&lt;P&gt;What endpoint are you getting that from though? Can you share some code and context so I may be able to offer some advice?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Aug 2016 23:24:06 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183718#M7658</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-08-18T23:24:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183719#M7659</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;STRONG class="comment-author" title="Gregory"&gt;Gregory,&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;In my code I am actually trying to get all the folder and file details for each user, and Also to get shared details for each file and folder. I have around 50K files. In case sequential execution everything works as expected. If I try to list files and folders with multiple process then I am hitting rate limits. Here I am trying to run 3 processes at a time.&lt;/P&gt;
&lt;P&gt;So In this case just wanted to confirm, If I do some amount of calls in the same time. Does it hit rate limits?&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Murali&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 00:13:34 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183719#M7659</guid>
      <dc:creator>Sophia S.3</dc:creator>
      <dc:date>2016-08-19T00:13:34Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183720#M7660</link>
      <description>&lt;P&gt;In that case, make sure you're using /files/list_folder[/continue] with recursive to true to get the listing.&lt;/P&gt;
&lt;P&gt;And yes, it's based on making a large number of requests in a certain amount of time.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 00:23:03 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183720#M7660</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-08-19T00:23:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183721#M7661</link>
      <description>&lt;P&gt;It did use to say somewhere in the dev docs that traversing the entire document tree for an account was not recommended for precisely this reason, did that advice go away? &lt;img class="lia-deferred-image lia-image-emoji" src="https://www.dropboxforum.com/html/@FBF7D2AB59A0D6E861EBF6A36F93B7E2/emoticons/1f642.png" alt=":slightly_smiling_face:" title=":slightly_smiling_face:" /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 00:24:37 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183721#M7661</guid>
      <dc:creator>Richard P.</dc:creator>
      <dc:date>2016-08-19T00:24:37Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183722#M7662</link>
      <description>&lt;P&gt;Using the recursive parameter is the solution to that in API v2, as it lets you get all of the metadata in the account without needing to make a call for every folder.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 00:26:03 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183722#M7662</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-08-19T00:26:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183723#M7663</link>
      <description>&lt;P&gt;Here I am using /files/list_folder API, and I got all the files/folder metadata but to get shared details for each file/folder I have to make API call for each shared I'd.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 01:58:31 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183723#M7663</guid>
      <dc:creator>Sophia S.3</dc:creator>
      <dc:date>2016-08-19T01:58:31Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183724#M7664</link>
      <description>&lt;P&gt;Are you using&amp;nbsp;/sharing/get_folder_metadata to get information on each shared folder? If so, you can instead use&amp;nbsp;/sharing/list_folders[/continue] to list them all more efficiently.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2016 02:33:11 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183724#M7664</guid>
      <dc:creator>Greg-DB</dc:creator>
      <dc:date>2016-08-19T02:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183725#M7665</link>
      <description>&lt;P&gt;Thanks Gregory,
&lt;BR /&gt;This should help my use case, will check that.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Aug 2016 00:44:22 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/183725#M7665</guid>
      <dc:creator>Sophia S.3</dc:creator>
      <dc:date>2016-08-22T00:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/508059#M25092</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am also hitting the rate limit. My application searches for zip files in a folder and extracts them. They contain thousand of tiny files which are uploaded one by one. This takes some hours with fast internet. Any ideas? Should I wait some time between the uploads or zip files? How long?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That is the error message:&lt;BR /&gt;INFO:dropbox:Request to files/upload&lt;BR /&gt;DEBUG:urllib3.connectionpool:&lt;A href="https://content.dropboxapi.com:443" target="_blank"&gt;https://content.dropboxapi.com:443&lt;/A&gt; "POST /2/files/upload HTTP/1.1" 429 None&lt;BR /&gt;INFO:dropbox:Ratelimit: Retrying in 15.0 seconds.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 09:09:21 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/508059#M25092</guid>
      <dc:creator>Chris Chris</dc:creator>
      <dc:date>2021-03-26T09:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Dropbox API rate limits</title>
      <link>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/508062#M25093</link>
      <description>&lt;P&gt;Found a solution here in section File Uploads:&lt;/P&gt;&lt;P&gt;&lt;A href="https://developers.dropbox.com/dbx-performance-guide" target="_blank"&gt;https://developers.dropbox.com/dbx-performance-guide&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 09:17:09 GMT</pubDate>
      <guid>https://www.dropboxforum.com/t5/Dropbox-API-Support-Feedback/Dropbox-API-rate-limits/m-p/508062#M25093</guid>
      <dc:creator>Chris Chris</dc:creator>
      <dc:date>2021-03-26T09:17:09Z</dc:date>
    </item>
  </channel>
</rss>

