<?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.17 (Ruby 3.1.3) -->
<?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-06" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.3 -->
  <front>
    <title>RateLimit header fields for HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpapi-ratelimit-headers-06"/>
    <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="2022" month="December" day="22"/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTPAPI</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>This document defines the RateLimit-Limit, RateLimit-Remaining, RateLimit-Reset and RateLimit-Policy HTTP header fields for servers to advertise their current service rate 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>
    <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-Limit: the server's quota for requests by the client in the time window,</li>
        <li>RateLimit-Remaining: the remaining quota in the current window,</li>
        <li>RateLimit-Reset: the time remaining in the current window, specified in seconds, and</li>
        <li>RateLimit-Policy: the quota policy.</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-Reset 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.</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-limit-field">
        <name>RateLimit-Limit</name>
        <t>The "RateLimit-Limit" response header field 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>The field is an Item and its value is a non-negative Integer referred to as the "expiring-limit".
This specification does not define Parameters for this field.
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 RateLimit-Reset header field 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[
   RateLimit-Limit: 100
]]></sourcecode>
        <t>The RateLimit-Policy header field (see <xref target="ratelimit-policy-field"/>), might contain information on the associated time window.</t>
        <t>This field cannot appear in a trailer section.</t>
      </section>
      <section anchor="ratelimit-policy-field">
        <name>RateLimit-Policy</name>
        <t>The "RateLimit-Policy" response header field indicates the quota policies 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
]]></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 anchor="ratelimit-remaining-field">
        <name>RateLimit-Remaining</name>
        <t>The "RateLimit-Remaining" response header field indicates the remaining quota units associated with the expiring-limit.</t>
        <t>The field 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 this field.
If they appear, they MUST be ignored.</t>
        <t>Clients MUST NOT assume that a positive RateLimit-Remaining header field value is a guarantee that further requests will be served.</t>
        <t>When the value of RateLimit-Remaining 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[
   RateLimit-Remaining: 50
]]></sourcecode>
        <t>This field cannot appear in a trailer section.</t>
      </section>
      <section anchor="ratelimit-reset-field">
        <name>RateLimit-Reset</name>
        <t>The "RateLimit-Reset" response header field indicates the number of seconds until the quota associated with the expiring-limit resets.</t>
        <t>The field 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 this field.
If they appear, they MUST be ignored.</t>
        <t>For example:</t>
        <sourcecode type="example"><![CDATA[
   RateLimit-Reset: 50
]]></sourcecode>
        <t>The client MUST NOT assume that all its service limit will be reset at the moment indicated by the RateLimit-Reset header field. The server MAY arbitrarily alter the RateLimit-Reset header field value between subsequent requests; for example, in case of resource saturation or to implement sliding window policies.</t>
        <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 RateLimit-Remaining header field 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 RateLimit-Remaining header field value is 0.</t>
      <sourcecode type="http-message"><![CDATA[
HTTP/1.1 301 Moved Permanently
Location: /foo/123
RateLimit-Remaining: 0
RateLimit-Limit: 10
RateLimit-Reset: 10

]]></sourcecode>
      <t>If a response contains both the Retry-After and the RateLimit-Reset header fields, the RateLimit-Reset header field 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 RateLimit-Remaining header field 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 RateLimit-Remaining and RateLimit-Reset header field 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
   RateLimit-Remaining: 1
   RateLimit-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 RateLimit-Remaining header field before the time window expressed in RateLimit-Reset header field.</t>
      <t>A client MAY still probe the server if the RateLimit-Reset header field is considered too high.</t>
      <t>The value of the RateLimit-Reset header field 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 RateLimit-Reset header field 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-Reset and Retry-After fields, the Retry-After field MUST take precedence and the RateLimit-Reset header field 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 RateLimit-Remaining header field 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 RateLimit-Reset</name>
        <t>Consider that service limit might not be restored after the moment referenced by RateLimit-Reset header field,
and the RateLimit-Reset header field value may not be fixed nor constant.</t>
        <t>Subsequent requests might return a higher RateLimit-Reset header field 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 RateLimit-Reset header field 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 RateLimit-Reset header field accordingly</t>
        <sourcecode type="example"><![CDATA[
   Date: Tue, 15 Nov 1994 08:00:00 GMT
   RateLimit-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
RateLimit-Policy: 10000;w=1000
RateLimit-Remaining: 10000
RateLimit-Reset: 10
]]></sourcecode>
        <t>A client implementing a simple ratio between RateLimit-Remaining header field and
RateLimit-Reset header field could infer an average throughput of 1000 quota units per second,
while the RateLimit-Limit header field 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 RateLimit-Remaining header field value
or an higher RateLimit-Reset header field 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 RateLimit-Remaining header field 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 RateLimit-Reset header field 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 RateLimit-Reset 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-Limit</td>
            <td align="left">permanent</td>
            <td align="left">
              <xref target="ratelimit-limit-field"/> of RFC nnnn</td>
          </tr>
          <tr>
            <td align="left">RateLimit-Remaining</td>
            <td align="left">permanent</td>
            <td align="left">
              <xref target="ratelimit-remaining-field"/> of RFC nnnn</td>
          </tr>
          <tr>
            <td align="left">RateLimit-Reset</td>
            <td align="left">permanent</td>
            <td align="left">
              <xref target="ratelimit-reset-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 Parameters Registration</name>
        <t>IANA is requested to create a new registry to be called
"Hypertext Transfer Protocol (HTTP) RateLimit 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>Parameter name:
The parameter name, conforming to <xref target="STRUCTURED-FIELDS"/>.</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">Parameter name</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-Policy</td>
              <td align="left">w</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">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="P. Overell" initials="P." surname="Overell">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="P-H. Kamp" initials="P-H." surname="Kamp">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig">
              <organization/>
            </author>
            <author fullname="B. Aboba" initials="B." surname="Aboba">
              <organization/>
            </author>
            <author fullname="J. Peterson" initials="J." surname="Peterson">
              <organization/>
            </author>
            <author fullname="J. Morris" initials="J." surname="Morris">
              <organization/>
            </author>
            <author fullname="M. Hansen" initials="M." surname="Hansen">
              <organization/>
            </author>
            <author fullname="R. Smith" initials="R." surname="Smith">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="H. Ruellan" initials="H." surname="Ruellan">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <author fullname="C. Newman" initials="C." surname="Newman">
              <organization/>
            </author>
            <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>
    <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
Ratelimit-Remaining: 0
Ratelimit-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 RateLimit-Remaining header field 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
Ratelimit-Remaining: 0
Ratelimit-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
RateLimit-Remaining: 100
RateLimit-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 RateLimit-Limit and RateLimit-Remaining header field 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
RateLimit-Remaining: 60
RateLimit-Reset: 58

{"elapsed": 2, "issued": 40}
]]></sourcecode>
          <t>At the subsequent request - due to resource exhaustion -
the server advertises only <tt>RateLimit-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
RateLimit-Remaining: 20
RateLimit-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-Reset 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-Reset: 5
RateLimit-Limit: 100
Ratelimit-Remaining: 0

{
"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
RateLimit-Policy: 100;w=60
Ratelimit-Remaining: 99
Ratelimit-Reset: 50

{"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-Limit 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 RateLimit-Remaining header field 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-Limit 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
RateLimit-Policy: 100;w=60
Ratelimit-Remaining: 9
Ratelimit-Reset: 50

{
  "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>RateLimit-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
RateLimit-Policy: 15;w=20
Ratelimit-Remaining: 0
Ratelimit-Reset: 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
RateLimit-Policy: 100;w=60
Ratelimit-Remaining: 15
Ratelimit-Reset: 40

{
  "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 RateLimit-Remaining header field 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 couple RateLimit-Limit and RateLimit-Reset header field.</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
Ratelimit-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
Ratelimit-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
RateLimit-Policy: 1000;w=3600, 5000;w=86400
RateLimit-Remaining: 100
RateLimit-Reset: 36000

{"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
RateLimit-Remaining and RateLimit-Reset.</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 RateLimit-Remaining header field imply any service guarantee for my
future requests to be served?  </t>
          <t>
No. FAQ integrated in <xref target="ratelimit-remaining-field"/>.</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
RateLimit-Remaining: 50
RateLimit-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
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":
&amp;#65532;
&amp;#65532;   - it is just <em>one</em> possible saturation cause. Once you go that path
&amp;#65532;     you will expose other infrastructural details (bandwidth, CPU, .. see <xref target="sec-information-disclosure"/>)
&amp;#65532;     and complicate client compliance;
&amp;#65532;   - it is an infrastructural detail defined in terms of server and network
&amp;#65532;     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"/>).
&amp;#65532;
&amp;#65532;   RateLimit header fields enable sending <em>on the same connection</em> different limit values
&amp;#65532;   on each response, depending on the policy scope (e.g. per-user, per-custom-key, ..)
&amp;#65532;</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 RateLimit-Limit,
RateLimit-Remaining header field and RateLimit-Reset header field 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-Remaining depends on the windowing algorithm.
A sliding window policy for example may result in having a
RateLimit-Remaining header field
value related to the ratio between the current and the maximum throughput.
e.g.</t>
      <sourcecode type="example"><![CDATA[
RateLimit-Limit: 12
RateLimit-Policy: 12;w=1
RateLimit-Remaining: 6          ; using 50% of throughput, that is 6 units/s
RateLimit-Reset: 1
]]></sourcecode>
      <t>If this is the case, the optimal solution is to achieve</t>
      <sourcecode type="example"><![CDATA[
RateLimit-Limit: 12
RateLimit-Policy: 12;w=1
RateLimit-Remaining: 1          ; using 100% of throughput, that is 12 units/s
RateLimit-Reset: 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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

-->

</rfc>
