<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.35 (Ruby 3.2.2) -->
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc docmapping="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-httpapi-ratelimit-headers-07" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.3 -->
  <front>
    <title>RateLimit header fields for HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpapi-ratelimit-headers-07"/>
    <author initials="R." surname="Polli" fullname="Roberto Polli">
      <organization>Team Digitale, Italian Government</organization>
      <address>
        <postal>
          <country>Italy</country>
        </postal>
        <email>robipolli@gmail.com</email>
      </address>
    </author>
    <author initials="A." surname="Martinez" fullname="Alejandro Martinez Ruiz">
      <organization>Red Hat</organization>
      <address>
        <email>alex@flawedcode.org</email>
      </address>
    </author>
    <date year="2023" month="June" day="24"/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTPAPI</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 52?>

<t>This document defines the RateLimit-Policy and RateLimit HTTP header fields for servers to advertise their service policy limits and the current limits, thereby allowing clients to avoid being throttled.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpapi-ratelimit-headers/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTPAPI Working Group mailing list (<eref target="mailto:httpapi@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/httpapi/"/>.
        Subscribe at <eref target="https://www.ietf.org/mailman/listinfo/httpapi/"/>.
        Working Group information can be found at <eref target="https://datatracker.ietf.org/wg/httpapi/about/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/ietf-wg-httpapi/ratelimit-headers"/>.</t>
    </note>
  </front>
  <middle>
    <?line 56?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Rate limiting HTTP clients has become a widespread practice, especially for HTTP APIs. Typically, servers who do so limit the number of acceptable requests in a given time window (e.g. 10 requests per second). See <xref target="rate-limiting"/> for further information on the current usage of rate limiting in HTTP.</t>
      <t>Currently, there is no standard way for servers to communicate quotas so that clients can throttle its requests to prevent errors. This document defines a set of standard HTTP header fields to enable rate limiting:</t>
      <ul spacing="normal">
        <li>RateLimit: to convey
the server's current limit of quota units available to the client in the policy time window,
the remaining quota units in the current window,
and the time remaining in the current window, specified in seconds, and</li>
        <li>RateLimit-Policy: the service policy limits.</li>
      </ul>
      <t>These fields allow the establishment of complex rate limiting policies, including using multiple and variable time windows and dynamic quotas, and implementing concurrency limits.</t>
      <t>The behavior of the RateLimit header field is compatible with the delay-seconds notation of Retry-After.</t>
      <section anchor="goals">
        <name>Goals</name>
        <t>The goals of this document are:</t>
        <dl>
          <dt>Interoperability:</dt>
          <dd>
            <t>Standardization of the names and semantics of rate-limit headers
to ease their enforcement and adoption;</t>
          </dd>
          <dt>Resiliency:</dt>
          <dd>
            <t>Improve resiliency of HTTP infrastructure by
providing clients with information useful
to throttle their requests and
prevent 4xx or 5xx responses;</t>
          </dd>
          <dt>Documentation:</dt>
          <dd>
            <t>Simplify API documentation by eliminating the need
to include detailed quota limits
and related fields in API documentation.</t>
          </dd>
        </dl>
        <t>The following features are out of the scope of this document:</t>
        <dl>
          <dt>Authorization:</dt>
          <dd>
            <t>RateLimit header fields are not meant to support
authorization or other kinds of access controls.</t>
          </dd>
          <dt>Throttling scope:</dt>
          <dd>
            <t>This specification does not cover the throttling scope,
that may be the given resource-target, its parent path or the whole
Origin (see <xref section="7" sectionFormat="of" target="WEB-ORIGIN"/>).
This can be addressed using extensibility mechanisms
such as the parameter registry <xref target="iana-ratelimit-parameters"/>.</t>
          </dd>
          <dt>Response status code:</dt>
          <dd>
            <t>RateLimit header fields may be returned in both
successful (see <xref section="15.3" sectionFormat="of" target="HTTP"/>) and non-successful responses.
This specification does not cover whether non Successful
responses count on quota usage,
nor it mandates any correlation between the RateLimit values
and the returned status code.</t>
          </dd>
          <dt>Throttling policy:</dt>
          <dd>
            <t>This specification does not mandate a specific throttling policy.
The values published in the fields, including the window size,
can be statically or dynamically evaluated.</t>
          </dd>
          <dt>Service Level Agreement:</dt>
          <dd>
            <t>Conveyed quota hints do not imply any service guarantee.
Server is free to throttle respectful clients under certain circumstances.</t>
          </dd>
        </dl>
      </section>
      <section anchor="notational-conventions">
        <name>Notational Conventions</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.
<?line -6?>
        </t>
        <t>This document uses the Augmented BNF defined in <xref target="RFC5234"/> and updated by <xref target="RFC7405"/> along with the "#rule" extension defined in <xref section="5.6.1" sectionFormat="of" target="HTTP"/>.</t>
        <t>The term Origin is to be interpreted as described in Section 7 of <xref target="WEB-ORIGIN"/>.</t>
        <t>This document uses the terms List, Item and Integer from <xref section="3" sectionFormat="of" target="STRUCTURED-FIELDS"/> to specify syntax and parsing, along with the concept of "bare item".</t>
        <t>The header fields defined in this document are collectively referred to as "RateLimit header fields".</t>
      </section>
    </section>
    <section anchor="concepts">
      <name>Concepts</name>
      <section anchor="quota-policy">
        <name>Quota Policy</name>
        <t>A quota policy is maintained by a server to limit the activity (counted in quota units) of a given client over a period of time (known as the <xref target="time-window">time window</xref>) to a specified amount (known as the <xref target="service-limit">service limit</xref>).</t>
        <t>Quota policies can be advertised by servers (see <xref target="ratelimit-policy-field"/>), but they are not required to be, and more than one quota policy can affect a given request from a client to a server.</t>
        <t>A quota policy is expressed in Structured Fields <xref target="STRUCTURED-FIELDS"/> as an Integer that indicates the service limit with associated parameters.</t>
        <t>The following Parameters are defined in this specification:</t>
        <dl>
          <dt>w:</dt>
          <dd>
            <t>The REQUIRED "w" parameter value conveys
a time window (<xref target="time-window"/>).</t>
          </dd>
        </dl>
        <t>For example, a quota policy of 100 quota units per minute is expressed as:</t>
        <sourcecode type="example"><![CDATA[
   100;w=60
]]></sourcecode>
        <t>Other parameters are allowed and can be regarded as comments. Parameters for use by more than one implementation or service ought to be registered within the "Hypertext Transfer Protocol (HTTP) RateLimit Parameters Registry", as described in <xref target="iana-ratelimit-parameters"/>.</t>
        <t>Implementation- or service-specific parameters SHOULD be prefixed parameters with a vendor identifier, e.g. <tt>acme-policy</tt>, <tt>acme-burst</tt>.</t>
      </section>
      <section anchor="service-limit">
        <name>Service Limit</name>
        <t>The service limit is a non-negative Integer indicating the maximum amount of activity that the server is willing to accept from what it identifies as the client (e.g., based upon originating IP or user authentication) during a <xref target="time-window">time window</xref>.</t>
        <t>The activity being limited is usually the HTTP requests made by the client; for example "you can make 100 requests per minute". However, a server might only rate limit some requests (based upon URI, method, user identity, etc.), and it might weigh requests differently. Therefore, quota policies are defined in terms of "quota units". Servers SHOULD document how they count quota units.</t>
        <t>For example, a server could count requests like <tt>/books/{id}</tt> once, but count search requests like <tt>/books?author=WuMing</tt> twice. This might result in the following counters:</t>
        <sourcecode type="example"><![CDATA[
GET /books/123           ; service-limit=4, remaining: 3, status=200
GET /books?author=WuMing ; service-limit=4, remaining: 1, status=200
GET /books?author=Eco    ; service-limit=4, remaining: 0, status=429
]]></sourcecode>
        <t>Often, the service limit advertised will match the server's actual limit. However, it MAY differ when weight mechanisms, bursts, or other server policies are implemented. In that case the difference SHOULD be communicated using an extension or documented separately.</t>
      </section>
      <section anchor="time-window">
        <name>Time Window</name>
        <t>Quota policies limit the number of acceptable requests within a given time interval, known as a time window.</t>
        <t>The time window is a non-negative Integer value expressing that interval in seconds, similar to the "delay-seconds" rule defined in <xref section="10.2.3" sectionFormat="of" target="HTTP"/>. Subsecond precision is not supported.</t>
        <t>By default, a quota policy does not constrain the distribution of quota units within the time window. If necessary, these details can be conveyed as extension parameters.</t>
        <t>For example, two quota policies containing further details via extension parameters:</t>
        <sourcecode type="example"><![CDATA[
   100;w=60;comment="fixed window"
   12;w=1;burst=1000;policy="leaky bucket"
]]></sourcecode>
      </section>
    </section>
    <section anchor="ratelimit-header-field-definitions">
      <name>RateLimit header field Definitions</name>
      <t>The following RateLimit response header fields are defined.</t>
      <section anchor="ratelimit-field">
        <name>RateLimit</name>
        <t>A server uses the "RateLimit" response header field to communicate its quota policies.</t>
        <t>The field is a Dictionary. The allowed keys are defined in the "Hypertext Transfer Protocol (HTTP) RateLimit Keywords and Parameters Registry", as described in <xref target="iana-ratelimit-parameters"/>.</t>
        <t>The following Keys are defined in this specification:</t>
        <dl>
          <dt>limit:</dt>
          <dd>
            <t>The REQUIRED "limit" key value conveys
the expiring limit (<xref target="ratelimit-limit-keyword"/>).
  remaining:</t>
          </dd>
          <dt/>
          <dd>
            <t>The OPTIONAL "remaining" key value conveys
the remaining quota units (<xref target="ratelimit-remaining-keyword"/>).
  reset:</t>
          </dd>
          <dt/>
          <dd>
            <t>The REQUIRED "reset" key value conveys
 the time window reset time (<xref target="ratelimit-reset-keyword"/>).</t>
          </dd>
        </dl>
        <t>This specification does not define Parameters for this field.
If they appear, they MUST be ignored.</t>
        <t>This field cannot appear in a trailer section.</t>
      </section>
      <section anchor="ratelimit-limit-keyword">
        <name>Limit Keyword</name>
        <t>The "limit" keyword indicates the <xref target="service-limit">service limit</xref> associated with the client in the current <xref target="time-window">time window</xref>. If the client exceeds that limit, it MAY not be served.</t>
        <t>It is an Item and its value is a non-negative Integer referred to as the "expiring limit".
This specification does not define Parameters for it.
If they appear, they MUST be ignored.</t>
        <t>The expiring limit MUST be set to the service limit that is closest to reaching its limit, and the associated time window MUST either be:</t>
        <ul spacing="normal">
          <li>inferred by the value of the <xref target="ratelimit-reset-keyword">reset keyword</xref> at the moment of the reset, or</li>
          <li>communicated out-of-band (e.g. in the documentation).</li>
        </ul>
        <t>Example:</t>
        <sourcecode type="example"><![CDATA[
   limit=100
]]></sourcecode>
        <t>The RateLimit-Policy header field (see <xref target="ratelimit-policy-field"/>), might contain information on the associated time window.</t>
      </section>
      <section anchor="ratelimit-remaining-keyword">
        <name>Remaining Keyword</name>
        <t>The "remaining" keyword indicates the remaining quota units associated with the expiring-limit.</t>
        <t>It is an Item and its value is a non-negative Integer expressed in <xref target="service-limit">quota units</xref>.
This specification does not define Parameters for it.
If they appear, they MUST be ignored.</t>
        <t>Clients MUST NOT assume that a positive remaining value is a guarantee that further requests will be served.</t>
        <t>When the value of the remaining keyword is low, it indicates that the server may soon throttle the client (see <xref target="providing-ratelimit-fields"/>).</t>
        <t>For example:</t>
        <sourcecode type="example"><![CDATA[
   remaining=50
]]></sourcecode>
      </section>
      <section anchor="ratelimit-reset-keyword">
        <name>Reset Keyword</name>
        <t>The "reset" keyword indicates the number of seconds until the available quota units associated with the expiring-limit resets.</t>
        <t>It is a non-negative Integer compatible with the delay-seconds rule, because:</t>
        <ul spacing="normal">
          <li>it does not rely on clock synchronization and is resilient to clock adjustment
and clock skew between client and server (see <xref section="5.6.7" sectionFormat="of" target="HTTP"/>);</li>
          <li>it mitigates the risk related to thundering herd when too many clients are serviced with the same timestamp.</li>
        </ul>
        <t>This specification does not define Parameters for it.
If they appear, they MUST be ignored.</t>
        <t>For example:</t>
        <sourcecode type="example"><![CDATA[
   reset=50
]]></sourcecode>
        <t>The client MUST NOT assume that all its service limit will be reset at the moment indicated by the reset keyword. The server MAY arbitrarily alter the reset keyword value between subsequent requests; for example, in case of resource saturation or to implement sliding window policies.</t>
      </section>
      <section anchor="ratelimit-policy-field">
        <name>RateLimit-Policy</name>
        <t>The "RateLimit-Policy" response header field indicates a service policy currently associated with the client. Its value is informative.</t>
        <t>The field is a non-empty List of Items. Each item is a <xref target="quota-policy">quota policy</xref>.
Two quota policies MUST NOT be associated with the same quota units value.</t>
        <t>This field can convey the time window associated with the expiring-limit, as shown in this example:</t>
        <sourcecode type="example"><![CDATA[
   RateLimit-Policy: 100;w=10
   RateLimit: limit=100, remaining=50, reset=5
]]></sourcecode>
        <t>These examples show multiple policies being returned:</t>
        <sourcecode type="example"><![CDATA[
   RateLimit-Policy: 10;w=1, 50;w=60, 1000;w=3600, 5000;w=86400
   RateLimit-Policy: 10;w=1;burst=1000, 1000;w=3600
]]></sourcecode>
        <t>An example of invalid header field value with two policies associated with the same quota units:</t>
        <sourcecode type="example"><![CDATA[
   RateLimit-Policy: 10;w=1, 10;w=60
]]></sourcecode>
        <t>This field cannot appear in a trailer section.</t>
      </section>
    </section>
    <section anchor="providing-ratelimit-fields">
      <name>Server Behavior</name>
      <t>A server uses the RateLimit header fields to communicate its quota policies.
A response that includes the RateLimit-Limit header field MUST also include the RateLimit-Reset.
It MAY also include a RateLimit-Remaining header field.</t>
      <t>A server MAY return RateLimit header fields independently of the response status code. This includes on throttled responses. This document does not mandate any correlation between the RateLimit header field values and the returned status code.</t>
      <t>Servers should be careful when returning RateLimit header fields in redirection responses (i.e., responses with 3xx status codes) because a low remaining keyword value could prevent the client from issuing requests. For example, given the RateLimit header fields below, a client could decide to wait 10 seconds before following the "Location" header field (see <xref section="10.2.2" sectionFormat="of" target="HTTP"/>), because the remaining keyword value is 0.</t>
      <sourcecode type="http-message"><![CDATA[
HTTP/1.1 301 Moved Permanently
Location: /foo/123
RateLimit: limit=10, remaining=0, reset=10

]]></sourcecode>
      <t>If a response contains both the Retry-After and the RateLimit header fields, the reset keyword value SHOULD reference the same point in time as the Retry-After field value.</t>
      <t>When using a policy involving more than one time window, the server MUST reply with the RateLimit header fields related to the time window with the lower remaining keyword values.</t>
      <t>A service using RateLimit header fields MUST NOT convey values exposing an unwanted volume of requests and SHOULD implement mechanisms to cap the ratio between the remaining and the reset keyword values (see <xref target="sec-resource-exhaustion"/>); this is especially important when a quota policy uses a large time window.</t>
      <t>Under certain conditions, a server MAY artificially lower RateLimit header field values between subsequent requests, e.g. to respond to Denial of Service attacks or in case of resource saturation.</t>
      <section anchor="performance-considerations">
        <name>Performance Considerations</name>
        <t>Servers are not required to return RateLimit header fields in every response, and clients need to take this into account. For example, an implementer concerned with performance might provide RateLimit header fields only when a given quota is going to expire.</t>
        <t>Implementers concerned with response fields' size, might take into account their ratio with respect to the content length, or use header-compression HTTP features such as <xref target="HPACK"/>.</t>
      </section>
    </section>
    <section anchor="receiving-fields">
      <name>Client Behavior</name>
      <t>The RateLimit header fields can be used by clients to determine whether the associated request respected the server's quota policy, and as an indication of whether subsequent requests will. However, the server might apply other criteria when servicing future requests, and so the quota policy may not completely reflect whether they will succeed.</t>
      <t>For example, a successful response with the following fields:</t>
      <sourcecode type="example"><![CDATA[
   RateLimit: limit=10, remaining=1, reset=7
]]></sourcecode>
      <t>does not guarantee that the next request will be successful. Servers' behavior may be subject to other conditions like the one shown in the example from <xref target="service-limit"/>.</t>
      <t>A client is responsible for ensuring that RateLimit header field values returned
cause reasonable client behavior with respect to throughput and latency
(see <xref target="sec-resource-exhaustion"/> and <xref target="sec-dos"/>).</t>
      <t>A client receiving RateLimit header fields MUST NOT assume that future responses will contain the same RateLimit header fields, or any RateLimit header fields at all.</t>
      <t>Malformed RateLimit header fields MUST be ignored.</t>
      <t>A client SHOULD NOT exceed the quota units conveyed by the remaining keyword before the time window expressed in the reset keyword.</t>
      <t>A client MAY still probe the server if the reset keyword is considered too high.</t>
      <t>The value of the reset keyword is generated at response time: a client aware of a significant network latency MAY behave accordingly and use other information (e.g. the "Date" response header field, or otherwise gathered metrics) to better estimate the reset keyword moment intended by the server.</t>
      <t>The details provided in the RateLimit-Policy header field are informative and MAY be ignored.</t>
      <t>If a response contains both the RateLimit and Retry-After fields, the Retry-After field MUST take precedence and the reset keyword MAY be ignored.</t>
      <t>This specification does not mandate a specific throttling behavior and implementers can adopt their preferred policies, including:</t>
      <ul spacing="normal">
        <li>slowing down or preemptively back-off their request rate when
approaching quota limits;</li>
        <li>consuming all the quota according to the exposed limits and then wait.</li>
      </ul>
      <section anchor="intermediaries">
        <name>Intermediaries</name>
        <t>This section documents the considerations advised in <xref section="16.3.2" sectionFormat="of" target="HTTP"/>.</t>
        <t>An intermediary that is not part of the originating service infrastructure and is not aware of the quota policy semantic used by the Origin Server SHOULD NOT alter the RateLimit header fields' values in such a way as to communicate a more permissive quota policy; this includes removing the RateLimit header fields.</t>
        <t>An intermediary MAY alter the RateLimit header fields in such a way as to communicate a more restrictive quota policy when:</t>
        <ul spacing="normal">
          <li>it is aware of the quota unit semantic used by the Origin Server;</li>
          <li>it implements this specification and enforces a quota policy which
is more restrictive than the one conveyed in the fields.</li>
        </ul>
        <t>An intermediary SHOULD forward a request even when presuming that it might not be serviced; the service returning the RateLimit header fields is the sole responsible of enforcing the communicated quota policy, and it is always free to service incoming requests.</t>
        <t>This specification does not mandate any behavior on intermediaries respect to retries, nor requires that intermediaries have any role in respecting quota policies. For example, it is legitimate for a proxy to retransmit a request without notifying the client, and thus consuming quota units.</t>
        <t><xref target="privacy">Privacy considerations</xref> provide further guidance on intermediaries.</t>
      </section>
      <section anchor="caching">
        <name>Caching</name>
        <t><xref target="HTTP-CACHING"/> defines how responses can be stored and reused for subsequent requests,
including those with RateLimit header fields.
Because the information in RateLimit header fields on a cached response may not be current, they SHOULD be ignored on responses that come from cache
(i.e., those with a positive current_age; see <xref section="4.2.3" sectionFormat="of" target="HTTP-CACHING"/>).</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="sec-throttling-does-not-prevent">
        <name>Throttling does not prevent clients from issuing requests</name>
        <t>This specification does not prevent clients from making requests.
Servers should always implement mechanisms to prevent resource exhaustion.</t>
      </section>
      <section anchor="sec-information-disclosure">
        <name>Information disclosure</name>
        <t>Servers should not disclose to untrusted parties operational capacity information
that can be used to saturate its infrastructural resources.</t>
        <t>While this specification does not mandate whether non-successful responses consume quota,
if error responses (such as 401 (Unauthorized) and 403 (Forbidden)) count against quota,
a malicious client could probe the endpoint to get traffic information of another user.</t>
        <t>As intermediaries might retransmit requests and consume
quota units without prior knowledge of the user agent,
RateLimit header fields might reveal the existence of an intermediary
to the user agent.</t>
      </section>
      <section anchor="sec-remaining-not-granted">
        <name>Remaining quota units are not granted requests</name>
        <t>RateLimit header fields convey hints from the server
to the clients in order to help them avoid being throttled out.</t>
        <t>Clients MUST NOT consider the <xref target="service-limit">quota units</xref> returned in remaining keyword as a service level agreement.</t>
        <t>In case of resource saturation, the server MAY artificially lower the returned values
or not serve the request regardless of the advertised quotas.</t>
      </section>
      <section anchor="sec-reset-reliability">
        <name>Reliability of the reset keyword</name>
        <t>Consider that service limit might not be restored after the moment referenced by the <xref target="ratelimit-reset-keyword">reset keyword</xref>,
and the reset keyword value may not be fixed nor constant.</t>
        <t>Subsequent requests might return a higher reset keyword value
to limit concurrency or implement dynamic or adaptive throttling policies.</t>
      </section>
      <section anchor="sec-resource-exhaustion">
        <name>Resource exhaustion</name>
        <t>When returning reset keyword you must be aware that
many throttled clients may come back at the very moment specified.</t>
        <t>This is true for Retry-After too.</t>
        <t>For example, if the quota resets every day at <tt>18:00:00</tt>
and your server returns the reset keyword accordingly</t>
        <sourcecode type="example"><![CDATA[
   Date: Tue, 15 Nov 1994 08:00:00 GMT
   RateLimit: limit=1, remaining=1, reset=36000
]]></sourcecode>
        <t>there's a high probability that all clients will show up at <tt>18:00:00</tt>.</t>
        <t>This could be mitigated by adding some jitter to the field-value.</t>
        <t>Resource exhaustion issues can be associated with quota policies using a large time window, because a user agent by chance or on purpose
might consume most of its quota units in a significantly shorter interval.</t>
        <t>This behavior can be even triggered by the provided RateLimit header fields.
The following example describes a service
with an unconsumed quota policy of 10000 quota units per 1000 seconds.</t>
        <sourcecode type="example"><![CDATA[
RateLimit: limit=10000, remaining=10000, reset=10
RateLimit-Policy: 10000;w=1000
]]></sourcecode>
        <t>A client implementing a simple ratio between remaining keyword and
reset keyword could infer an average throughput of 1000 quota units per second,
while the limit keyword conveys a quota-policy
with an average of 10 quota units per second.
If the service cannot handle such load, it should return
either a lower remaining keyword value
or an higher reset keyword value.
Moreover, complementing large time window quota policies with a short time window one mitigates those risks.</t>
        <section anchor="sec-dos">
          <name>Denial of Service</name>
          <t>RateLimit header fields may contain unexpected values by chance or on purpose.
For example, an excessively high remaining keyword value may be:</t>
          <ul spacing="normal">
            <li>used by a malicious intermediary to trigger a Denial of Service attack
or consume client resources boosting its requests;</li>
            <li>passed by a misconfigured server;</li>
          </ul>
          <t>or a high reset keyword value could inhibit clients to contact the server (e.g. similarly to receiving "Retry-after: 1000000").</t>
          <t>To mitigate this risk, clients can set thresholds that they consider reasonable in terms of
quota units, time window, concurrent requests or throughput,
and define a consistent behavior when the RateLimit exceed those thresholds.
For example this means capping the maximum number of request per second,
or implementing retries when the reset keyword exceeds ten minutes.</t>
          <t>The considerations above are not limited to RateLimit header fields,
but apply to all fields affecting how clients behave
in subsequent requests (e.g. Retry-After).</t>
        </section>
      </section>
    </section>
    <section anchor="privacy">
      <name>Privacy Considerations</name>
      <t>Clients that act upon a request to rate limit
are potentially re-identifiable (see <xref section="5.2.1" sectionFormat="of" target="PRIVACY"/>)
because they react to information that might only be given to them.
Note that this might apply to other fields too (e.g. Retry-After).</t>
      <t>Since rate limiting is usually implemented in contexts where
clients are either identified or profiled
(e.g. assigning different quota units to different users),
this is rarely a concern.</t>
      <t>Privacy enhancing infrastructures using RateLimit header fields
can define specific techniques to mitigate the risks of re-identification.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>IANA is requested to update one registry and create one new registry.</t>
      <t>Please add the following entries to the
"Hypertext Transfer Protocol (HTTP) Field Name Registry" registry (<xref target="HTTP"/>):</t>
      <table>
        <thead>
          <tr>
            <th align="left">Field Name</th>
            <th align="left">Status</th>
            <th align="left">Specification</th>
          </tr>
        </thead>
        <tbody>
          <tr>
            <td align="left">RateLimit</td>
            <td align="left">permanent</td>
            <td align="left">
              <xref target="ratelimit-field"/> of RFC nnnn</td>
          </tr>
          <tr>
            <td align="left">RateLimit-Policy</td>
            <td align="left">permanent</td>
            <td align="left">
              <xref target="ratelimit-policy-field"/> of RFC nnnn</td>
          </tr>
        </tbody>
      </table>
      <section anchor="iana-ratelimit-parameters">
        <name>RateLimit Keywords and Parameters Registration</name>
        <t>IANA is requested to create a new registry to be called
"Hypertext Transfer Protocol (HTTP) RateLimit Keywords and Parameters Registry",
to be located at
<eref target="https://www.iana.org/assignments/http-ratelimit-parameters">https://www.iana.org/assignments/http-ratelimit-parameters</eref>.
Registration is done on the advice of a Designated Expert,
appointed by the IESG or their delegate.
All entries are Specification Required (<xref section="4.6" sectionFormat="comma" target="IANA"/>).</t>
        <t>Registration requests consist of the following information:</t>
        <ul spacing="normal">
          <li>Token name:
The keyword or parameter name, conforming to <xref target="STRUCTURED-FIELDS"/>.</li>
          <li>Token type:
Whether the token is a Dictionary Keyword or a Parameter Name.</li>
          <li>Field name:
The RateLimit header field for which the parameter is registered. If a parameter is intended to be used
with multiple fields, it has to be registered
for each one.</li>
          <li>Description:
A brief description of the parameter.</li>
          <li>Specification document:
A reference to the document that specifies the parameter, preferably
including a URI that can be used to retrieve a copy of the document.</li>
          <li>Comments (optional):
Any additional information that can be useful.</li>
        </ul>
        <t>The initial contents of this registry should be:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Field Name</th>
              <th align="left">Token name</th>
              <th align="left">Token type</th>
              <th align="left">Description</th>
              <th align="left">Specification</th>
              <th align="left">Comments (optional)</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">RateLimit</td>
              <td align="left">limit</td>
              <td align="left">Dictionary Key</td>
              <td align="left">Expiring limit</td>
              <td align="left">
                <xref target="ratelimit-limit-keyword"/> of RFC nnnn</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">RateLimit</td>
              <td align="left">remaining</td>
              <td align="left">Dictionary Key</td>
              <td align="left">Remaining quota units</td>
              <td align="left">
                <xref target="ratelimit-remaining-keyword"/> of RFC nnnn</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">RateLimit</td>
              <td align="left">reset</td>
              <td align="left">Dictionary Key</td>
              <td align="left">Quota reset interval</td>
              <td align="left">
                <xref target="ratelimit-reset-keyword"/> of RFC nnnn</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">RateLimit-Policy</td>
              <td align="left">w</td>
              <td align="left">Parameter name</td>
              <td align="left">Time window</td>
              <td align="left">
                <xref target="quota-policy"/> of RFC nnnn</td>
              <td align="left"> </td>
            </tr>
          </tbody>
        </table>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="IANA">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="HTTP">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="WEB-ORIGIN">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents.  Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites.  In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string.  It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized.  This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
            <author fullname="P. Overell" initials="P." surname="Overell"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF.  It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="RFC7405">
          <front>
            <title>Case-Sensitive String Support in ABNF</title>
            <author fullname="P. Kyzivat" initials="P." surname="Kyzivat"/>
            <date month="December" year="2014"/>
            <abstract>
              <t>This document extends the base definition of ABNF (Augmented Backus-Naur Form) to include a way to specify US-ASCII string literals that are matched in a case-sensitive manner.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7405"/>
          <seriesInfo name="DOI" value="10.17487/RFC7405"/>
        </reference>
        <reference anchor="STRUCTURED-FIELDS">
          <front>
            <title>Structured Field Values for HTTP</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="P-H. Kamp" surname="P-H. Kamp"/>
            <date month="February" year="2021"/>
            <abstract>
              <t>This document describes a set of data types and associated algorithms that are intended to make it easier and safer to define and handle HTTP header and trailer fields, known as "Structured Fields", "Structured Headers", or "Structured Trailers".  It is intended for use by specifications of new HTTP fields that wish to use a common syntax that is more restrictive than traditional HTTP field values.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8941"/>
          <seriesInfo name="DOI" value="10.17487/RFC8941"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="PRIVACY">
          <front>
            <title>Privacy Considerations for Internet Protocols</title>
            <author fullname="A. Cooper" initials="A." surname="Cooper"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <author fullname="J. Peterson" initials="J." surname="Peterson"/>
            <author fullname="J. Morris" initials="J." surname="Morris"/>
            <author fullname="M. Hansen" initials="M." surname="Hansen"/>
            <author fullname="R. Smith" initials="R." surname="Smith"/>
            <date month="July" year="2013"/>
            <abstract>
              <t>This document offers guidance for developing privacy considerations for inclusion in protocol specifications.  It aims to make designers, implementers, and users of Internet protocols aware of privacy-related design choices.  It suggests that whether any individual RFC warrants a specific privacy considerations section will depend on the document's content.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6973"/>
          <seriesInfo name="DOI" value="10.17487/RFC6973"/>
        </reference>
        <reference anchor="UNIX">
          <front>
            <title>The Single UNIX Specification, Version 2 - 6 Vol Set for UNIX 98</title>
            <author initials="" surname="The Open Group" fullname="The Open Group">
              <organization/>
            </author>
            <date year="1997" month="February"/>
          </front>
        </reference>
        <reference anchor="HPACK">
          <front>
            <title>HPACK: Header Compression for HTTP/2</title>
            <author fullname="R. Peon" initials="R." surname="Peon"/>
            <author fullname="H. Ruellan" initials="H." surname="Ruellan"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>This specification defines HPACK, a compression format for efficiently representing HTTP header fields, to be used in HTTP/2.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7541"/>
          <seriesInfo name="DOI" value="10.17487/RFC7541"/>
        </reference>
        <reference anchor="HTTP-CACHING">
          <front>
            <title>HTTP Caching</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t>
              <t>This document obsoletes RFC 7234.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="98"/>
          <seriesInfo name="RFC" value="9111"/>
          <seriesInfo name="DOI" value="10.17487/RFC9111"/>
        </reference>
        <reference anchor="RFC6585">
          <front>
            <title>Additional HTTP Status Codes</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <date month="April" year="2012"/>
            <abstract>
              <t>This document specifies additional HyperText Transfer Protocol (HTTP) status codes for a variety of common situations. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6585"/>
          <seriesInfo name="DOI" value="10.17487/RFC6585"/>
        </reference>
        <reference anchor="RFC3339">
          <front>
            <title>Date and Time on the Internet: Timestamps</title>
            <author fullname="G. Klyne" initials="G." surname="Klyne"/>
            <author fullname="C. Newman" initials="C." surname="Newman"/>
            <date month="July" year="2002"/>
            <abstract>
              <t>This document defines a date and time format for use in Internet protocols that is a profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3339"/>
          <seriesInfo name="DOI" value="10.17487/RFC3339"/>
        </reference>
      </references>
    </references>
    <?line 589?>

<section anchor="rate-limiting">
      <name>Rate-limiting and quotas</name>
      <t>Servers use quota mechanisms to avoid systems overload, to ensure an equitable distribution of computational resources or to enforce other policies - e.g. monetization.</t>
      <t>A basic quota mechanism limits the number of acceptable requests in a given time window, e.g. 10 requests per second.</t>
      <t>When quota is exceeded, servers usually do not serve the request replying instead with a 4xx HTTP status code (e.g. 429 or 403) or adopt more aggressive policies like dropping connections.</t>
      <t>Quotas may be enforced on different basis (e.g. per user, per IP, per geographic area, ..) and at different levels. For example, an user may be allowed to issue:</t>
      <ul spacing="normal">
        <li>10 requests per second;</li>
        <li>limited to 60 requests per minute;</li>
        <li>limited to 1000 requests per hour.</li>
      </ul>
      <t>Moreover system metrics, statistics and heuristics can be used to implement more complex policies,
where the number of acceptable requests and the time window are computed dynamically.</t>
      <t>To help clients throttling their requests,
servers may expose the counters used to evaluate quota policies via HTTP header fields.</t>
      <t>Those response headers may be added by HTTP intermediaries such as API gateways and reverse proxies.</t>
      <t>On the web we can find many different rate-limit headers,
usually containing the number of allowed requests in a given time window, and when the window is reset.</t>
      <t>The common choice is to return three headers containing:</t>
      <ul spacing="normal">
        <li>the maximum number of allowed requests in the time window;</li>
        <li>the number of remaining requests in the current window;</li>
        <li>the time remaining in the current window expressed in seconds or
as a timestamp;</li>
      </ul>
      <section anchor="interoperability-issues">
        <name>Interoperability issues</name>
        <t>A major interoperability issue in throttling is the lack of standard headers, because:</t>
        <ul spacing="normal">
          <li>each implementation associates different semantics to the
same header field names;</li>
          <li>header field names proliferates.</li>
        </ul>
        <t>User agents interfacing with different servers may thus need to process different headers,
or the very same application interface that sits behind different reverse proxies
may reply with different throttling headers.</t>
      </section>
    </section>
    <section anchor="examples">
      <name>Examples</name>
      <section anchor="unparameterized-responses">
        <name>Unparameterized responses</name>
        <section anchor="throttling-information-in-responses">
          <name>Throttling information in responses</name>
          <t>The client exhausted its service-limit for the next 50 seconds.
The time-window is communicated out-of-band or inferred by the field values.</t>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 Ok
Content-Type: application/json
RateLimit: limit=100, remaining=0, reset=50

{"hello": "world"}
]]></sourcecode>
          <t>Since the field values are not necessarily correlated with
the response status code,
a subsequent request is not required to fail.
The example below shows that the server decided to serve the request
even if remaining keyword value is 0.
Another server, or the same server under other load conditions, could have decided to throttle the request instead.</t>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/456 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 Ok
Content-Type: application/json
RateLimit: limit=100, remaining=0, reset=48

{"still": "successful"}
]]></sourcecode>
        </section>
        <section anchor="use-with-custom-fields">
          <name>Use in conjunction with custom fields</name>
          <t>The server uses two custom fields,
namely <tt>acme-RateLimit-DayLimit</tt> and <tt>acme-RateLimit-HourLimit</tt>
to expose the following policy:</t>
          <ul spacing="normal">
            <li>5000 daily quota units;</li>
            <li>1000 hourly quota units.</li>
          </ul>
          <t>The client consumed 4900 quota units in the first 14 hours.</t>
          <t>Despite the next hourly limit of 1000 quota units,
the closest limit to reach is the daily one.</t>
          <t>The server then exposes the RateLimit header fields to
inform the client that:</t>
          <ul spacing="normal">
            <li>it has only 100 quota units left;</li>
            <li>the window will reset in 10 hours.</li>
          </ul>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 Ok
Content-Type: application/json
acme-RateLimit-DayLimit: 5000
acme-RateLimit-HourLimit: 1000
RateLimit: limit=5000, remaining=100, reset=36000

{"hello": "world"}
]]></sourcecode>
        </section>
        <section anchor="use-for-limiting-concurrency">
          <name>Use for limiting concurrency</name>
          <t>RateLimit header fields may be used to limit concurrency,
advertising limits that are lower than the usual ones
in case of saturation, thus increasing availability.</t>
          <t>The server adopted a basic policy of 100 quota units per minute,
and in case of resource exhaustion adapts the returned values
reducing both limit and remaining keyword values.</t>
          <t>After 2 seconds the client consumed 40 quota units</t>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 Ok
Content-Type: application/json
RateLimit: limit=100, remaining=60, reset=58

{"elapsed": 2, "issued": 40}
]]></sourcecode>
          <t>At the subsequent request - due to resource exhaustion -
the server advertises only <tt>remaining=20</tt>.</t>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 Ok
Content-Type: application/json
RateLimit: limit=100, remaining=20, reset=56

{"elapsed": 4, "issued": 41}
]]></sourcecode>
        </section>
        <section anchor="use-in-throttled-responses">
          <name>Use in throttled responses</name>
          <t>A client exhausted its quota and the server throttles it
sending Retry-After.</t>
          <t>In this example, the values of Retry-After and RateLimit header field reference the same moment,
but this is not a requirement.</t>
          <t>The 429 (Too Many Request) HTTP status code is just used as an example.</t>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 429 Too Many Requests
Content-Type: application/json
Date: Mon, 05 Aug 2019 09:27:00 GMT
Retry-After: Mon, 05 Aug 2019 09:27:05 GMT
RateLimit: limit=100, remaining=0, reset=5

{
"title": "Too Many Requests",
"status": 429,
"detail": "You have exceeded your quota"
}
]]></sourcecode>
        </section>
      </section>
      <section anchor="parameterized-responses">
        <name>Parameterized responses</name>
        <section anchor="throttling-window-specified-via-parameter">
          <name>Throttling window specified via parameter</name>
          <t>The client has 99 quota units left for the next 50 seconds.
The time window is communicated by the <tt>w</tt> parameter, so we know the throughput is 100 quota units per minute.</t>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 Ok
Content-Type: application/json
RateLimit: limit=100, remaining=99, reset=50
RateLimit-Policy: 100;w=60
{"hello": "world"}
]]></sourcecode>
        </section>
        <section anchor="dynamic-limits-with-parameterized-windows">
          <name>Dynamic limits with parameterized windows</name>
          <t>The policy conveyed by the RateLimit header field states that
the server accepts 100 quota units per minute.</t>
          <t>To avoid resource exhaustion, the server artificially lowers
the actual limits returned in the throttling headers.</t>
          <t>The remaining keyword then advertises
only 9 quota units for the next 50 seconds to slow down the client.</t>
          <t>Note that the server could have lowered even the other
values in the RateLimit header field: this specification
does not mandate any relation between the field values
contained in subsequent responses.</t>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 Ok
Content-Type: application/json
RateLimit: limit=10, remaining=9, reset=50
RateLimit-Policy: 100;w=60

{
  "status": 200,
  "detail": "Just slow down without waiting."
}
]]></sourcecode>
        </section>
        <section anchor="dynamic-limits-for-pushing-back-and-slowing-down">
          <name>Dynamic limits for pushing back and slowing down</name>
          <t>Continuing the previous example, let's say the client waits 10 seconds and
performs a new request which, due to resource exhaustion, the server rejects
and pushes back, advertising <tt>remaining=0</tt> for the next 20 seconds.</t>
          <t>The server advertises a smaller window with a lower limit to slow
down the client for the rest of its original window after the 20 seconds elapse.</t>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 429 Too Many Requests
Content-Type: application/json
RateLimit: limit=0, remaining=0, reset=20
RateLimit-Policy: 15;w=20

{
  "status": 429,
  "detail": "Wait 20 seconds, then slow down!"
}
]]></sourcecode>
        </section>
      </section>
      <section anchor="dynamic-limits-for-pushing-back-with-retry-after-and-slow-down">
        <name>Dynamic limits for pushing back with Retry-After and slow down</name>
        <t>Alternatively, given the same context where the previous example starts, we
can convey the same information to the client via Retry-After, with
the advantage that the server can now specify the policy's nominal limit and
window that will apply after the reset, e.g. assuming the resource exhaustion
is likely to be gone by then, so the advertised policy does not need to be
adjusted, yet we managed to stop requests for a while and slow down the rest of
the current window.</t>
        <t>Request:</t>
        <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
        <t>Response:</t>
        <sourcecode type="http-message"><![CDATA[
HTTP/1.1 429 Too Many Requests
Content-Type: application/json
Retry-After: 20
RateLimit: limit=15, remaining=15, reset=40
RateLimit-Policy: 100;w=60

{
  "status": 429,
  "detail": "Wait 20 seconds, then slow down!"
}
]]></sourcecode>
        <t>Note that in this last response the client is expected to honor
Retry-After and perform no requests for the specified amount of
time, whereas the previous example would not force the client to stop
requests before the reset time is elapsed, as it would still be free to
query again the server even if it is likely to have the request rejected.</t>
        <section anchor="missing-remaining-information">
          <name>Missing Remaining information</name>
          <t>The server does not expose remaining keyword values
(for example, because the underlying counters are not available).
Instead, it resets the limit counter every second.</t>
          <t>It communicates to the client the limit of 10 quota units per second
always returning the limit and reset keywords.</t>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 Ok
Content-Type: application/json
RateLimit: limit=10, reset=1

{"first": "request"}
]]></sourcecode>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 Ok
Content-Type: application/json
RateLimit: limit=10, reset=1

{"second": "request"}
]]></sourcecode>
        </section>
        <section anchor="use-with-multiple-windows">
          <name>Use with multiple windows</name>
          <t>This is a standardized way of describing the policy
detailed in <xref target="use-with-custom-fields"/>:</t>
          <ul spacing="normal">
            <li>5000 daily quota units;</li>
            <li>1000 hourly quota units.</li>
          </ul>
          <t>The client consumed 4900 quota units in the first 14 hours.</t>
          <t>Despite the next hourly limit of 1000 quota units, the closest limit
to reach is the daily one.</t>
          <t>The server then exposes the RateLimit header fields to inform the client that:</t>
          <ul spacing="normal">
            <li>it has only 100 quota units left;</li>
            <li>the window will reset in 10 hours;</li>
            <li>the expiring-limit is 5000.</li>
          </ul>
          <t>Request:</t>
          <sourcecode type="http-message"><![CDATA[
GET /items/123 HTTP/1.1
Host: api.example

]]></sourcecode>
          <t>Response:</t>
          <sourcecode type="http-message"><![CDATA[
HTTP/1.1 200 OK
Content-Type: application/json
RateLimit: limit=5000, remaining=100, reset=36000
RateLimit-Policy: 1000;w=3600, 5000;w=86400

{"hello": "world"}
]]></sourcecode>
        </section>
      </section>
    </section>
    <section numbered="false" removeInRFC="true" anchor="faq">
      <name>FAQ</name>
      <ol spacing="normal" type="1"><li>
          <t>Why defining standard fields for throttling?  </t>
          <t>
To simplify enforcement of throttling policies.</t>
        </li>
        <li>
          <t>Can I use RateLimit header fields in throttled responses (eg with status code 429)?  </t>
          <t>
Yes, you can.</t>
        </li>
        <li>
          <t>Are those specs tied to RFC 6585?  </t>
          <t>
No. <xref target="RFC6585"/> defines the <tt>429</tt> status code and we use it just as an example of a throttled request,
that could instead use even <tt>403</tt> or whatever status code.
The goal of this specification is to standardize the name and semantic of three RateLimit header fields
widely used on the internet. Stricter relations with status codes or error response payloads
would impose behaviors to all the existing implementations making the adoption more complex.</t>
        </li>
        <li>
          <t>Why don't pass the throttling scope as a parameter?  </t>
          <t>
The word "scope" can have different meanings:
for example it can be an URL, or an authorization scope.
Since authorization is out of the scope of this document (see <xref target="goals"/>),
and that we rely only on <xref target="HTTP"/>, in <xref target="goals"/> we defined "scope" in terms of
URL.  </t>
          <t>
Since clients are not required to process quota policies (see <xref target="receiving-fields"/>),
we could add a new "RateLimit-Scope" field to this spec.
See this discussion on a <eref target="https://github.com/httpwg/http-core/pull/317#issuecomment-585868767">similar thread</eref>  </t>
          <t>
Specific ecosystems can still bake their own prefixed parameters,
such as <tt>acme-auth-scope</tt> or <tt>acme-url-scope</tt> and ensure that clients process them.
This behavior cannot be relied upon when communicating between different ecosystems.  </t>
          <t>
We are open to suggestions: comment on <eref target="https://github.com/ioggstream/draft-polli-ratelimit-headers/issues/70">this issue</eref></t>
        </li>
        <li>
          <t>Why using delay-seconds instead of a UNIX Timestamp?
Why not using subsecond precision?  </t>
          <t>
Using delay-seconds aligns with Retry-After, which is returned in similar contexts,
eg on 429 responses.  </t>
          <t>
Timestamps require a clock synchronization protocol
(see <xref section="5.6.7" sectionFormat="of" target="HTTP"/>).
This may be problematic (e.g. clock adjustment, clock skew, failure of hardcoded clock synchronization servers,
IoT devices, ..).
Moreover timestamps may not be monotonically increasing due to clock adjustment.
See <eref target="https://community.ntppool.org/t/another-ntp-client-failure-story/1014/">Another NTP client failure story</eref>  </t>
          <t>
We did not use subsecond precision because:  </t>
          <ul spacing="normal">
            <li>that is more subject to system clock correction
like the one implemented via the adjtimex() Linux system call;</li>
            <li>response-time latency may not make it worth. A brief discussion on the subject is
on the <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/2019JulSep/0202.html">httpwg ml</eref></li>
            <li>almost all rate-limit headers implementations do not use it.</li>
          </ul>
        </li>
        <li>
          <t>Why not support multiple quota remaining?  </t>
          <t>
While this might be of some value, my experience suggests that overly-complex quota implementations
results in lower effectiveness of this policy. This spec allows the client to easily focusing on
the remaining and reset keywords.</t>
        </li>
        <li>
          <t>Shouldn't I limit concurrency instead of request rate?  </t>
          <t>
You can use this specification to limit concurrency
at the HTTP level (see {#use-for-limiting-concurrency})
and help clients to
shape their requests avoiding being throttled out.  </t>
          <t>
A problematic way to limit concurrency is connection dropping,
especially when connections are multiplexed (e.g. HTTP/2)
because this results in unserviced client requests,
which is something we want to avoid.  </t>
          <t>
A semantic way to limit concurrency is to return 503 + Retry-After
in case of resource saturation (e.g. thrashing, connection queues too long,
Service Level Objectives not meet, ..).
Saturation conditions can be either dynamic or static: all this is out of
the scope for the current document.</t>
        </li>
        <li>
          <t>Do a positive value of remaining keyword imply any service guarantee for my
future requests to be served?  </t>
          <t>
No. FAQ integrated in <xref target="ratelimit-remaining-keyword"/>.</t>
        </li>
        <li>
          <t>Is the quota-policy definition <xref target="quota-policy"/> too complex?  </t>
          <t>
You can always return the simplest form of the 3 fields</t>
        </li>
      </ol>
      <sourcecode type="example"><![CDATA[
RateLimit: limit=100, remaining=50, reset=60
]]></sourcecode>
      <t>The key runtime value is the first element of the list: <tt>expiring-limit</tt>, the others quota-policy are informative.
   So for the following field:</t>
      <sourcecode type="example"><![CDATA[
RateLimit: limit=100, remaining=50, reset=44
RateLimit-Policy: 100;w=60;burst=1000;comment="sliding window", 5000;w=3600;burst=0;comment="fixed window"
]]></sourcecode>
      <t>the key value is the one referencing the lowest limit: <tt>100</tt></t>
      <ol spacing="normal" type="1"><li>Can we use shorter names? Why don't put everything in one field?</li>
      </ol>
      <t>The most common syntax we found on the web is <tt>X-RateLimit-*</tt> and
   when starting this I-D <eref target="https://github.com/ioggstream/draft-polli-ratelimit-headers/issues/34#issuecomment-519366481">we opted for it</eref></t>
      <t>The basic form of those fields is easily parseable, even by
   implementers processing responses using technologies like
   dynamic interpreter with limited syntax.</t>
      <t>Using a single field complicates parsing and takes
   a significantly different approach from the existing
   ones: this can limit adoption.</t>
      <ol spacing="normal" type="1"><li>
          <t>Why don't mention connections?  </t>
          <t>
Beware of the term "connection":
￼
￼   - it is just <em>one</em> possible saturation cause. Once you go that path
￼     you will expose other infrastructural details (bandwidth, CPU, .. see <xref target="sec-information-disclosure"/>)
￼     and complicate client compliance;
￼   - it is an infrastructural detail defined in terms of server and network
￼     rather than the consumed service.
  This specification protects the services first,
  and then the infrastructures through client cooperation (see <xref target="sec-throttling-does-not-prevent"/>).
￼
￼   RateLimit header fields enable sending <em>on the same connection</em> different limit values
￼   on each response, depending on the policy scope (e.g. per-user, per-custom-key, ..)
￼</t>
        </li>
        <li>
          <t>Can intermediaries alter RateLimit header fields?  </t>
          <t>
Generally, they should not because it might result in unserviced requests.
There are reasonable use cases for intermediaries mangling RateLimit header fields though,
e.g. when they enforce stricter quota-policies,
or when they are an active component of the service.
In those case we will consider them as part of the originating infrastructure.</t>
        </li>
        <li>
          <t>Why the <tt>w</tt> parameter is just informative?
Could it be used by a client to determine the request rate?  </t>
          <t>
A non-informative <tt>w</tt> parameter might be fine in an environment
where clients and servers are tightly coupled. Conveying policies
with this detail on a large scale would be very complex and implementations
would be likely not interoperable. We thus decided to leave <tt>w</tt> as
an informational parameter and only rely on the limit, remaining and reset keywords
for defining the throttling
behavior.</t>
        </li>
        <li>Can I use RateLimit fields in trailers?
Servers usually establish whether the request is in-quota before creating a response, so the RateLimit field values should be already available in that moment.
Supporting trailers has the only advantage that allows to provide more up-to-date information to the client in case of slow responses.
However, this complicates client implementations with respect to combining fields from headers and accounting for intermediaries that drop trailers.
Since there are no current implementations that use trailers, we decided to leave this as a future-work.</li>
      </ol>
    </section>
    <section numbered="false" removeInRFC="true" anchor="ratelimit-header-fields-currently-used-on-the-web">
      <name>RateLimit header fields currently used on the web</name>
      <t>Commonly used header field names are:</t>
      <ul spacing="normal">
        <li>
          <tt>X-RateLimit-Limit</tt>,
<tt>X-RateLimit-Remaining</tt>,
  <tt>X-RateLimit-Reset</tt>;</li>
        <li>
          <tt>X-Rate-Limit-Limit</tt>,
<tt>X-Rate-Limit-Remaining</tt>,
  <tt>X-Rate-Limit-Reset</tt>.</li>
      </ul>
      <t>There are variants too, where the window is specified
in the header field name, eg:</t>
      <ul spacing="normal">
        <li>
          <tt>x-ratelimit-limit-minute</tt>, <tt>x-ratelimit-limit-hour</tt>, <tt>x-ratelimit-limit-day</tt></li>
        <li>
          <tt>x-ratelimit-remaining-minute</tt>, <tt>x-ratelimit-remaining-hour</tt>, <tt>x-ratelimit-remaining-day</tt></li>
      </ul>
      <t>Here are some interoperability issues:</t>
      <ul spacing="normal">
        <li>
          <t><tt>X-RateLimit-Remaining</tt> references different values, depending on the implementation:  </t>
          <ul spacing="normal">
            <li>seconds remaining to the window expiration</li>
            <li>milliseconds remaining to the window expiration</li>
            <li>seconds since UTC, in UNIX Timestamp <xref target="UNIX"/></li>
            <li>a datetime, either <tt>IMF-fixdate</tt> <xref target="HTTP"/> or <xref target="RFC3339"/></li>
          </ul>
        </li>
        <li>
          <t>different headers, with the same semantic, are used by different implementers:  </t>
          <ul spacing="normal">
            <li>X-RateLimit-Limit and X-Rate-Limit-Limit</li>
            <li>X-RateLimit-Remaining and X-Rate-Limit-Remaining</li>
            <li>X-RateLimit-Reset and X-Rate-Limit-Reset</li>
          </ul>
        </li>
      </ul>
      <t>The semantic of RateLimit depends on the windowing algorithm.
A sliding window policy for example may result in having a
remaining keyword
value related to the ratio between the current and the maximum throughput.
e.g.</t>
      <sourcecode type="example"><![CDATA[
RateLimit: limit=12,    \
           remaining=6, \ ; using 50% of throughput, that is 6 units/s
           reset=1
RateLimit-Policy: 12;w=1
]]></sourcecode>
      <t>If this is the case, the optimal solution is to achieve</t>
      <sourcecode type="example"><![CDATA[
RateLimit: limit=12,   \
           remaining=1 \  ; using 100% of throughput, that is 12 units/s
           reset=1
RateLimit-Policy: 12;w=1
]]></sourcecode>
      <t>At this point you should stop increasing your request rate.</t>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Thanks to Willi Schoenborn, Alejandro Martinez Ruiz, Alessandro Ranellucci,
Amos Jeffries,
Martin Thomson,
Erik Wilde and Mark Nottingham for being the initial contributors
of these specifications.
Kudos to the first community implementers:
Aapo Talvensaari,
Nathan Friedly
and Sanyam Dogra.</t>
      <t>In addition to the people above, this document owes a lot to the extensive discussion
in the HTTPAPI workgroup, including
Rich Salz,
Darrel Miller
and Julian Reschke.</t>
    </section>
    <section numbered="false" removeInRFC="true" anchor="changes">
      <name>Changes</name>
      <section numbered="false" removeInRFC="true" anchor="since-draft-ietf-httpapi-ratelimit-headers-03">
        <name>Since draft-ietf-httpapi-ratelimit-headers-03</name>
        <ul spacing="normal">
          <li>Split policy informatio in RateLimit-Policy #81</li>
        </ul>
      </section>
      <section numbered="false" removeInRFC="true" anchor="since-draft-ietf-httpapi-ratelimit-headers-02">
        <name>Since draft-ietf-httpapi-ratelimit-headers-02</name>
        <ul spacing="normal">
          <li>Address throttling scope #83</li>
        </ul>
      </section>
      <section numbered="false" removeInRFC="true" anchor="since-draft-ietf-httpapi-ratelimit-headers-01">
        <name>Since draft-ietf-httpapi-ratelimit-headers-01</name>
        <ul spacing="normal">
          <li>Update IANA considerations #60</li>
          <li>Use Structured fields #58</li>
          <li>Reorganize document #67</li>
        </ul>
      </section>
      <section numbered="false" removeInRFC="true" anchor="since-draft-ietf-httpapi-ratelimit-headers-00">
        <name>Since draft-ietf-httpapi-ratelimit-headers-00</name>
        <ul spacing="normal">
          <li>Use I-D.httpbis-semantics, which includes referencing delay-seconds
instead of delta-seconds. #5</li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
Er5qtP1qADtL/h/jifPU4bkAAA==

-->

</rfc>
