<?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.7.39 (Ruby 3.4.9) -->
<?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-11" category="std" consensus="true" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.33.0 -->
  <front>
    <title>RateLimit header fields for HTTP</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpapi-ratelimit-headers-11"/>
    <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>
    <author initials="D." surname="Miller" fullname="Darrel Miller">
      <organization>Microsoft</organization>
      <address>
        <email>darrel@tavis.ca</email>
      </address>
    </author>
    <date year="2026" month="May" day="23"/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTPAPI</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 59?>

<t>This document defines the RateLimit-Policy and RateLimit HTTP header fields for servers to advertise their quota policies and the current service 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 63?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Rate limiting of 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 their requests to prevent errors. This document defines a set of standard HTTP header fields to enable rate limiting:</t>
      <ul spacing="normal">
        <li>
          <t>RateLimit-Policy: a quota policy, defined by the server, that client HTTP requests will consume.</t>
        </li>
        <li>
          <t>RateLimit: the quota currently available under a specific policy.</t>
        </li>
      </ul>
      <t>These fields enable establishing complex rate limiting policies, including using multiple and variable time windows and dynamic quotas, and implementing concurrency limits.</t>
      <section anchor="goals">
        <name>Goals</name>
        <t>The goals of this document are:</t>
        <dl>
          <dt>Interoperability:</dt>
          <dd>
            <t>Standardize 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>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 does it mandate any correlation between the RateLimit values and the returned status code.</t>
          </dd>
          <dt>Throttling algorithm:</dt>
          <dd>
            <t>This specification does not mandate a specific throttling algorithm. 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 clients that adhere to the server’s recommended limits 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>The term Origin is to be interpreted as described in <xref section="7" sectionFormat="of" target="WEB-ORIGIN"/>.</t>
        <t>This document uses the terms List, Item and Integer from <xref section="3" sectionFormat="of" target="SF"/> to specify syntax and parsing, along with the concept of "bare item".</t>
        <t>The term "problem type" in this document is to be interpreted as described in <xref target="PROBLEM"/>.</t>
      </section>
    </section>
    <section anchor="terminology">
      <name>Terminology</name>
      <dl>
        <dt>Quota:</dt>
        <dd>
          <t>A quota is an allocation of capacity used by a resource server to limit client requests. That capacity is measured in quota units that the client may consume within a time window.</t>
        </dd>
        <dt>Quota Unit:</dt>
        <dd>
          <t>A quota unit is the unit of measurement used to measure the activity of a client.</t>
        </dd>
        <dt>Quota Partition:</dt>
        <dd>
          <t>A quota partition is a division of a server's capacity across different clients, users and owned resources.</t>
        </dd>
        <dt>Time Window:</dt>
        <dd>
          <t>A time window indicates a period of time associated to the allocated quota.</t>
        </dd>
        <dt>Quota Policy:</dt>
        <dd>
          <t>A quota policy is implemented by the server to regulate the activity within a specified quota partition, quantified in quota units, over a defined time window. This activity is restricted to a predefined limit, known as the quota. Quota policies can be advertised by servers, 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>
        </dd>
        <dt>Service Limit:</dt>
        <dd>
          <t>A service limit is the currently available quota under a specific quota policy and, if defined, the effective time window within which the client can use no more than the available quota.</t>
        </dd>
        <dt>List:</dt>
        <dd>
          <t>A <xref target="SF"/> list of Items</t>
        </dd>
        <dt>Item:</dt>
        <dd>
          <t>A <xref target="SF"/> item with a set of associated parameters</t>
        </dd>
      </dl>
    </section>
    <section anchor="ratelimit-policy-field">
      <name>RateLimit-Policy Field</name>
      <t>The "RateLimit-Policy" response header field is a non-empty List<xref target="SF"/> of Quota Policy Items (<xref target="quotapolicy-item"/>). The Item<xref target="SF"/> value MUST be a String<xref target="SF"/>.</t>
      <t>The field value SHOULD remain consistent over a sequence of HTTP responses. It is this characteristic that differentiates it from the <xref target="ratelimit-field">RateLimit</xref> field that contains information that MAY change on every request. The "RateLimit-Policy" field enables clients to control their own flow of requests based on policy information provided by the server. Situations where throttling constraints are highly dynamic are better served using the <xref target="ratelimit-field">RateLimit field</xref> that communicates the latest service information a client can react to. Both fields can be communicated by the server when appropriate.</t>
      <t>Lists of Quota Policy Items (<xref target="quotapolicy-item"/>) can be split over multiple "RateLimit-Policy" fields in the same HTTP response as described in <xref section="3.1" sectionFormat="of" target="SF"/>.</t>
      <artwork><![CDATA[
   RateLimit-Policy: "burst";q=100;w=60,"daily";q=1000;w=86400
]]></artwork>
      <section anchor="quotapolicy-item">
        <name>Quota Policy Item</name>
        <t>A quota policy Item contains an identifier for the policy and a set of Parameters<xref target="SF"/> that contain information about a server's capacity allocation for the policy.</t>
        <t>The following parameters are defined:</t>
        <dl>
          <dt>q:</dt>
          <dd>
            <t>The REQUIRED "q" parameter indicates the quota allocated by this policy measured in quota units.</t>
          </dd>
          <dt>qu:</dt>
          <dd>
            <t>The OPTIONAL "qu" parameter value conveys the quota units associated to the "q" parameter. The default quota unit is "requests".</t>
          </dd>
          <dt>w:</dt>
          <dd>
            <t>The OPTIONAL "w" parameter value conveys a time window.</t>
          </dd>
          <dt>pk:</dt>
          <dd>
            <t>The OPTIONAL "pk" parameter value conveys the partition key associated to the corresponding request.</t>
          </dd>
        </dl>
        <t>Other parameters are allowed and can be regarded as comments.</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>
        <t>This field MUST NOT appear in a trailer section.</t>
        <section anchor="ratelimitpolicy-quota">
          <name>Quota Parameter</name>
          <t>The "q" parameter value MUST be a non-negative Integer. The value indicates the quota allocated for client activity (measured in quota units) for a given quota partition.</t>
        </section>
        <section anchor="ratelimitpolicy-quotaunit">
          <name>Quota Unit Parameter</name>
          <t>The "qu" parameter value conveys the quota units applicable to the quota (<xref target="ratelimitpolicy-quota"/>). The value MUST be a String. Allowed values are listed in the <xref target="ratelimit-quota-unit-registry">RateLimit Quota Units registry</xref>. This specification defines three quota units:</t>
          <dl>
            <dt>requests:</dt>
            <dd>
              <t>This value indicates the quota is based on the number of requests processed by the resource server. Whether a specific request actually consumes a quota unit is implementation-specific.</t>
            </dd>
            <dt>content-bytes:</dt>
            <dd>
              <t>This value indicates the quota is based on the number of content bytes processed by the resource server.</t>
            </dd>
            <dt>concurrent-requests:</dt>
            <dd>
              <t>This value indicates the quota is based on the number of concurrent requests processed by the resource server.</t>
            </dd>
          </dl>
        </section>
        <section anchor="ratelimitpolicy-window">
          <name>Window Parameter</name>
          <t>The "w" parameter value conveys a time window applicable to the quota (<xref target="ratelimitpolicy-quota"/>). The time window MUST be a non-negative, non-zero, Integer value expressing an interval in seconds, similar to the "delay-seconds" rule defined in <xref section="10.2.3" sectionFormat="of" target="HTTP"/>. Sub-second precision is not supported.</t>
        </section>
        <section anchor="ratelimitpolicy-partitionkey">
          <name>Partition Key Parameter</name>
          <t>The "pk" parameter value conveys the partition key associated to the request. The value MUST be a Byte Sequence. Servers MAY use the partition key to divide server capacity across different clients and resources. Quotas are allocated per partition key.</t>
        </section>
      </section>
      <section anchor="ratelimit-policy-field-examples">
        <name>RateLimit Policy Field Examples</name>
        <t>This field MAY convey the time window associated with the quota, as shown in this example:</t>
        <artwork><![CDATA[
   RateLimit-Policy: "default";q=100;w=10
]]></artwork>
        <t>These examples show multiple policies being returned:</t>
        <artwork><![CDATA[
   RateLimit-Policy: "permin";q=50;w=60,"perhr";q=1000;w=3600
]]></artwork>
        <t>The following example shows a policy with a partition key:</t>
        <artwork><![CDATA[
   RateLimit-Policy: "peruser";q=100;w=60;pk=:cHsdsRa894==:
]]></artwork>
        <t>The following example shows a policy with a partition key and a quota unit:</t>
        <artwork><![CDATA[
   RateLimit-Policy: "peruser";q=65535;qu="content-bytes";w=10;pk=:sdfjLJUOUH==:
]]></artwork>
      </section>
    </section>
    <section anchor="ratelimit-field">
      <name>RateLimit Field</name>
      <t>A server uses the "RateLimit" response header field to communicate the current service limit for a quota policy for a particular partition key.</t>
      <t>The field is expressed as a List<xref target="SF"/> of Service Limit Items (<xref target="servicelimit-item"/>).</t>
      <t>Lists of Service Limit Items can be split over multiple "RateLimit" fields in the same HTTP response as described in <xref section="3.1" sectionFormat="of" target="SF"/>.</t>
      <artwork><![CDATA[
   RateLimit: "default";r=50;t=30
]]></artwork>
      <section anchor="servicelimit-item">
        <name>Service Limit Item</name>
        <t>Each service limit Item<xref target="SF"/> identifies the quota policy (<xref target="quotapolicy-item"/>) associated with the request and contains Parameters<xref target="SF"/> with information about the current service limit.</t>
        <t>The following parameters are defined in this specification:</t>
        <dl>
          <dt>r:</dt>
          <dd>
            <t>This REQUIRED parameter value conveys the available quota under the identified policy (<xref target="ratelimit-available-quota"/>).</t>
          </dd>
          <dt>t:</dt>
          <dd>
            <t>This OPTIONAL parameter value conveys the effective window under the identified policy: the time within which the client can use no more than the available quota (<xref target="ratelimit-effective-window"/>).</t>
          </dd>
          <dt>pk:</dt>
          <dd>
            <t>The OPTIONAL "pk" parameter value conveys the partition key associated to the corresponding request.</t>
          </dd>
        </dl>
        <t>This field MUST NOT appear in a trailer section. Other parameters are allowed and can be regarded as comments.</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 anchor="ratelimit-available-quota">
          <name>Available Quota Parameter</name>
          <t>The "r" parameter indicates the available quota under the identified policy.</t>
          <t>It is a non-negative Integer expressed in quota units.
Clients MUST NOT assume that a positive available quota is a guarantee that further requests will be served.
When the available quota is low, it indicates that the server may soon throttle the client (see <xref target="providing-ratelimit-fields"/>).</t>
        </section>
        <section anchor="ratelimit-effective-window">
          <name>Effective Window Parameter</name>
          <t>The "t" parameter indicates effective window under the identified policy: the number of seconds within which the client can use no more than the available quota.</t>
          <t>It is a non-negative Integer compatible with the delay-seconds rule, because:</t>
          <ul spacing="normal">
            <li>
              <t>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"/>);</t>
            </li>
            <li>
              <t>it mitigates the risk related to thundering herd when too many clients are serviced with the same timestamp.</t>
            </li>
          </ul>
          <t>The client MUST NOT assume that all its service limit will be fully restored after the time indicated by the effective window parameter. The server MAY arbitrarily alter the available quota and effective window between subsequent requests; for example, in case of resource saturation or to implement sliding window policies.</t>
        </section>
        <section anchor="ratelimit-partitionkey">
          <name>Partition Key Parameter</name>
          <t>The "pk" parameter value conveys the partition key associated to the request. The value MUST be a Byte Sequence. Servers MAY use the partition key to divide server capacity across different clients and resources. Quotas are allocated per partition key.</t>
        </section>
      </section>
      <section anchor="ratelimit-field-examples">
        <name>RateLimit Field Examples</name>
        <t>This example shows a RateLimit field with an available quota of 50 units and an effective window of 30 seconds:</t>
        <artwork><![CDATA[
   RateLimit: "default";r=50;t=30
]]></artwork>
        <t>This example shows an available quota of 999 requests for a partition key that has no time window:</t>
        <artwork><![CDATA[
   RateLimit: "default";r=999;pk=:dHJpYWwxMjEzMjM=:
]]></artwork>
        <t>This example shows a 300MB available quota for an application in the next 60 seconds:</t>
        <artwork><![CDATA[
   RateLimit: "default";r=300000000;t=60;pk=:QXBwLTk5OQ==:
]]></artwork>
      </section>
    </section>
    <section anchor="problem-types">
      <name>Problem Types</name>
      <section anchor="quota-exceeded">
        <name>Quota Exceeded</name>
        <t>This section defines the "https://iana.org/assignments/http-problem-types#quota-exceeded" problem type. A server MAY use this problem type if it wants to communicate to the client that the requests sent by the client exceed one or more Quota Policies. This problem type defines the extension member "violated-policies" as an array of strings, whose value is the names of policies where the quota was exceeded.</t>
        <sourcecode type="http-message"><![CDATA[
HTTP/1.1 429 Bad Request
Content-Type: application/problem+json

{
  "type": "https://iana.org/assignments/http-problem-types#quota-exceeded",
  "title": "Request cannot be satisfied as assigned quota has been exceeded",
  "violated-policies": ["daily","bandwidth"]
}
]]></sourcecode>
      </section>
      <section anchor="temporary-reduced-capacity">
        <name>Temporary Reduced Capacity</name>
        <t>This section defines the "https://iana.org/assignments/http-problem-types#temporary-reduced-capacity" problem type. A server MAY use this problem type if it wants to communicate that the client’s requests currently cannot be satisfied due to a temporary reduction in server capacity. The server MAY choose to include a RateLimit-Policy field indicating the new temporarily lower quota. This problem type defines the extension member "violated-policies" as an array of strings, whose value is the names of policies where the quota was exceeded.</t>
        <sourcecode type="http-message"><![CDATA[
HTTP/1.1 503 Server Unavailable
Content-Type: application/problem+json

{
  "type": "https://iana.org/assignments/http-problem-types#temporary-reduced-capacity",
  "title": "Request cannot be satisfied due to temporary server capacity constraints",
  "violated-policies": ["hourly"]
}
]]></sourcecode>
      </section>
      <section anchor="abnormal-usage-detected">
        <name>Abnormal Usage Detected</name>
        <t>This section defines the "https://iana.org/assignments/http-problem-types#abnormal-usage-detected" problem type. A server MAY use this problem type  to communicate to the client that it has detected a pattern of requests that suggest unintentional or malicious behaviour on the part of the client. This problem type defines the extension member "violated-policies" as an array of strings, whose value is the names of policies where the quota was exceeded.</t>
        <sourcecode type="http-message"><![CDATA[
HTTP/1.1 429 Too Many Requests
Content-Type: application/problem+json

{
  "type": "https://iana.org/assignments/http-problem-types#abnormal-usage-detected",
  "title": "Request not satisifed due to detection of abnormal request pattern",
  "violated-policies": ["hourly"]
}
]]></sourcecode>
      </section>
    </section>
    <section anchor="providing-ratelimit-fields">
      <name>Server Behavior</name>
      <t>A server MAY return RateLimit header fields independently of the response status code. This includes 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 available quota 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 available quota is 0.</t>
      <sourcecode type="http-message"><![CDATA[
HTTP/1.1 301 Moved Permanently
Location: /foo/123
RateLimit: "problemPolicy";r=0;t=10

]]></sourcecode>
      <t>If a response contains both the Retry-After and the RateLimit header fields, the Retry-After field value SHOULD NOT reference a point in time earlier than the end of the effective window.</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 available quota and the effective window 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="generating-partition-keys">
        <name>Generating Partition Keys</name>
        <t>Servers MAY choose to return partition keys that distinguish between quota allocated to different consumers or different resources. There are a wide range of strategies for partitioning server capacity, including per user, per application, per HTTP method, per resource, or some combination of those values. The server SHOULD document how the partition key is generated so that clients can predict the key value for a future request and determine if there is sufficient quota available to execute the request. Servers should avoid returning partition keys that contain sensitive information. Servers SHOULD only use information that is present in the request to generate the partition key.</t>
      </section>
      <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 close to exhaustion.</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 be successful. However, the server might apply other criteria when servicing future requests, and so the quota policy may not completely reflect whether requests will succeed.</t>
      <t>For example, a successful response with the following fields:</t>
      <artwork><![CDATA[
   RateLimit: "default";r=1;t=7
]]></artwork>
      <t>does not guarantee that the next request will be successful. Servers' behavior may be subject to other conditions.</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 available quota within the time expressed in the effective window parameter.</t>
      <t>The value of the effective window parameter 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 schedule requests.</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 effective window 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>
          <t>slowing down or pre-emptively back-off their request rate when
approaching quota limits;</t>
        </li>
        <li>
          <t>consuming all the quota according to the exposed limits and then wait.</t>
        </li>
      </ul>
      <section anchor="consuming-partition-keys">
        <name>Consuming Partition Keys</name>
        <t>Partition keys are useful for a client if it is likely that single client will make requests that consume different quota allocations. E.g. a client making requests on behalf of different users or for different resources that have independent quota allocations.</t>
        <t>If a server documents the partition key generation algorithm, clients MAY generate a partition key for a future request. Using this key, and comparing to the key returned by the server, the client can determine if there is sufficient quota available to execute the request.</t>
        <t>For cases where the partition key generation algorithm of a server is unknown, clients MAY use heuristics to guess if a future request will be successful based on its similarity to previous requests.</t>
      </section>
      <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>
            <t>it is aware of the quota unit semantic used by the Origin Server;</t>
          </li>
          <li>
            <t>it implements this specification and enforces a quota policy which
is more restrictive than the one conveyed in the fields.</t>
          </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 with respect to retries, nor does it require 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>
        <t>Where partition keys contain identifying information, either of the client application or the user, servers should be aware of the potential for impersonation and apply the appropriate security mechanisms.</t>
      </section>
      <section anchor="sec-available-not-granted">
        <name>Available 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="ratelimit-available-quota">available quota parameter</xref> 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-window-variability">
        <name>Variability of the effective window</name>
        <t>The <xref target="ratelimit-effective-window">effective window parameter</xref> does not imply anything about when the server will increase the available quota. The effective window does not necessarily end at a fixed point in time.</t>
        <t>Subsequent requests might return a higher effective window 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 effective window values, servers 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 effective window accordingly</t>
        <artwork><![CDATA[
   Date: Tue, 15 Nov 1994 18:00:00 GMT
   RateLimit: "daily";r=1;t=86400
]]></artwork>
        <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 effective window.</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>
        <artwork><![CDATA[
RateLimit-Policy: "somepolicy";q=10000;w=1000
RateLimit: "somepolicy";r=10000;t=10
]]></artwork>
        <t>A client implementing a simple ratio between available quota and effective window could infer an average throughput of 1000 quota units per second, while the policy's quota and window parameters convey an average of 10 quota units per second.
If the service cannot handle such load, it should return either a lower available quota or a higher effective window.
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 available quota may be:</t>
          <ul spacing="normal">
            <li>
              <t>used by a malicious intermediary to trigger a Denial of Service attack
or consume client resources boosting its requests;</t>
            </li>
            <li>
              <t>passed by a misconfigured server;</t>
            </li>
          </ul>
          <t>or a large effective window 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 effective window 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 two registries and create one new registry.</t>
      <section anchor="update-http-field-name-registry">
        <name>Update HTTP Field Name Registry</name>
        <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">Structured Type</th>
              <th align="left">Status</th>
              <th align="left">Specification</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">RateLimit</td>
              <td align="left">List</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">List</td>
              <td align="left">permanent</td>
              <td align="left">
                <xref target="ratelimit-policy-field"/> of RFC nnnn</td>
            </tr>
          </tbody>
        </table>
      </section>
      <section anchor="update-http-problem-type-registry">
        <name>Update HTTP Problem Type registry</name>
        <t>IANA is asked to register the following entries in the "HTTP Problem Types" registry at https://www.iana.org/assignments/http-problem-types.</t>
        <section anchor="registration-of-quota-exceeded-problem-type">
          <name>Registration of "quota-exceeded" Problem Type</name>
          <t>Type URI: https://iana.org/assignments/http-problem-types#quota-exceeded</t>
          <t>Title: Quota Exceeded</t>
          <t>Recommended HTTP status code: 429</t>
          <t>Reference: <xref target="quota-exceeded"/> of this document</t>
        </section>
        <section anchor="registration-of-temporary-reduced-capacity-problem-type">
          <name>Registration of "temporary-reduced-capacity" Problem Type</name>
          <t>Type URI: https://iana.org/assignments/http-problem-types#temporary-reduced-capacity</t>
          <t>Title: Temporary Reduced Capacity</t>
          <t>Recommended HTTP status code: 503</t>
          <t>Reference: <xref target="temporary-reduced-capacity"/> of this document</t>
        </section>
        <section anchor="registration-of-abnormal-usage-detected-problem-type">
          <name>Registration of "abnormal-usage-detected" Problem Type</name>
          <t>Type URI: https://iana.org/assignments/http-problem-types#abnormal-usage-detected</t>
          <t>Title: Abnormal Usage Detected</t>
          <t>Recommended HTTP status code: 429</t>
          <t>Reference: <xref target="abnormal-usage-detected"/> of this document</t>
        </section>
      </section>
      <section anchor="ratelimit-quota-unit-registry">
        <name>RateLimit quota unit registry</name>
        <t>This specification establishes the registry "Hypertext Transfer Protocol (HTTP) RateLimit Quota Units" registry to be located at https://www.iana.org/assignments/http-ratelimit-quota-units. Registration is done on the advice of a Designated Expert, appointed by the IESG or their delegate. All entries are Specification Required (<xref target="IANA"/>, Section 4.6).</t>
        <t>The registry has the following initial content:</t>
        <table>
          <thead>
            <tr>
              <th align="left">Quota Unit</th>
              <th align="left">Reference</th>
              <th align="left">Notes</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td align="left">request</td>
              <td align="left">RFC nnnn</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">content-bytes</td>
              <td align="left">RFC nnnn</td>
              <td align="left"> </td>
            </tr>
            <tr>
              <td align="left">concurrent-requests</td>
              <td align="left">RFC nnnn</td>
              <td align="left"> </td>
            </tr>
          </tbody>
        </table>
        <section anchor="registration-template">
          <name>Registration Template</name>
          <t>The registration template for the RateLimit Quota Units registry is as follows:</t>
          <ul spacing="normal">
            <li>
              <t>Quota Unit: The name of the quota unit.</t>
            </li>
            <li>
              <t>Reference: A reference to the document that specifies the quota unit.</t>
            </li>
            <li>
              <t>Notes: Any additional notes about the quota unit.</t>
            </li>
          </ul>
        </section>
      </section>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-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="PROBLEM">
          <front>
            <title>Problem Details for HTTP APIs</title>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham"/>
            <author fullname="E. Wilde" initials="E." surname="Wilde"/>
            <author fullname="S. Dalal" initials="S." surname="Dalal"/>
            <date month="July" year="2023"/>
            <abstract>
              <t>This document defines a "problem detail" to carry machine-readable details of errors in HTTP response content to avoid the need to define new error response formats for HTTP APIs.</t>
              <t>This document obsoletes RFC 7807.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9457"/>
          <seriesInfo name="DOI" value="10.17487/RFC9457"/>
        </reference>
        <reference anchor="SF">
          <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="September" year="2024"/>
            <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.</t>
              <t>This document obsoletes RFC 8941.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9651"/>
          <seriesInfo name="DOI" value="10.17487/RFC9651"/>
        </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>
      </references>
      <references anchor="sec-informative-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 637?>

<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, etc.) and at different levels. For example, a user may be allowed to issue:</t>
      <ul spacing="normal">
        <li>
          <t>10 requests per second;</t>
        </li>
        <li>
          <t>limited to 60 requests per minute;</t>
        </li>
        <li>
          <t>limited to 1000 requests per hour.</t>
        </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>
          <t>the maximum number of allowed requests in the time window;</t>
        </li>
        <li>
          <t>the number of remaining requests in the current window;</t>
        </li>
        <li>
          <t>the time remaining in the current window expressed in seconds or
as a timestamp;</t>
        </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>
            <t>each implementation associates different semantics to the
same header field names;</t>
          </li>
          <li>
            <t>header field names proliferates.</t>
          </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="responses-without-defining-policies">
        <name>Responses without defining policies</name>
        <t>Some servers may not expose the policy limits in the RateLimit-Policy header field. Clients can still use the RateLimit header field to throttle their requests.</t>
        <section anchor="throttling-information-in-responses">
          <name>Throttling information in responses</name>
          <t>The client exhausted its quota for the next 50 seconds.
The limit and time-window is communicated out-of-band.</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: "default";r=0;t=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 the available quota 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: "default";r=0;t=48

{"still": "successful"}
]]></sourcecode>
        </section>
        <section anchor="use-with-multiple-policies">
          <name>Multiple policies in response</name>
          <t>The server uses two different policies to limit the client's requests:</t>
          <ul spacing="normal">
            <li>
              <t>5000 daily quota units;</t>
            </li>
            <li>
              <t>1000 hourly quota units.</t>
            </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>
              <t>it has only 100 quota units left in the daily quota and the window will end in 10 hours;</t>
            </li>
          </ul>
          <t>The server MAY choose to omit returning the hourly policy as it uses the same quota units as the daily policy and the daily policy is the one that is closest to being exhausted.</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: "dayLimit";r=100;t=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 available quota and effective window 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-Policy: "basic";q=100;w=60
RateLimit: "basic";r=60;t=58

{"elapsed": 2, "issued": 40}
]]></sourcecode>
          <t>At the subsequent request - due to resource exhaustion -
the server advertises only <tt>r=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-Policy: "basic";q=100;w=60
RateLimit: "basic";r=20;t=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/problem+json
Date: Mon, 05 Aug 2019 09:27:00 GMT
Retry-After: Mon, 05 Aug 2019 09:27:05 GMT
RateLimit: "default";r=0;t=5

{
"type": "https://iana.org/assignments/http-problem-types#quota-exceeded"
"title": "Too Many Requests",
"status": 429,
"violated-policies": ["default"]
}
]]></sourcecode>
        </section>
      </section>
      <section anchor="responses-with-defined-policies">
        <name>Responses with defined policies</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: "fixedwindow";r=99;t=50
RateLimit-Policy: "fixedwindow";q=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-Policy 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 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 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-Policy: "dynamic";q=100;w=60
RateLimit: "dynamic";r=9;t=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>r=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-Policy: "dynamic";q=15;w=20
RateLimit: "dynamic";r=0;t=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 retry time, 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-Policy: "dynamic";q=100;w=60
RateLimit: "dynamic";r=15;t=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 end of the effective window, as it would still be free to
query again the server even if it is likely to have the request rejected.</t>
        <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-multiple-policies"/>:</t>
          <ul spacing="normal">
            <li>
              <t>5000 daily quota units;</t>
            </li>
            <li>
              <t>1000 hourly quota units.</t>
            </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>
              <t>it has only 100 quota units left;</t>
            </li>
            <li>
              <t>the effective window is 10 hours;</t>
            </li>
            <li>
              <t>the expiring-limit is 5000.</t>
            </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-Policy: "hour";q=1000;w=3600, "day";q=5000;w=86400
RateLimit: "day";r=100;t=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 and enable clients to constraint their requests to avoid being throttled.</t>
        </li>
        <li>
          <t>Can I use RateLimit header fields in throttled responses (e.g. 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.</t>
        </li>
        <li>
          <t>Why is the partition key necessary?  </t>
          <t>
Without a partition key, a server can effectively only have one scope (aka partition), which is impractical for most services, or it needs to communicate the scopes out-of-band.
This prevents the development of generic connector code that can be used to prevent requests from being throttled.
Many APIs rely on API keys, user identity or client identity to allocate quota.
As soon as a single client processes requests for more than one partition, the client needs to know the corresponding partition key to properly track requests against allocated quota.</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,
e.g. 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, etc.).
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>
              <t>that is more subject to system clock correction
like the one implemented via the adjtimex() Linux system call;</t>
            </li>
            <li>
              <t>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></t>
            </li>
            <li>
              <t>almost all rate-limit headers implementations do not use it.</t>
            </li>
          </ul>
        </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 client requests not being handled,
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, etc.).
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 parameter imply any service guarantee for my
future requests to be served?  </t>
          <t>
No. FAQ integrated in <xref target="ratelimit-available-quota"/>.</t>
        </li>
        <li>
          <t>Is the quota-policy definition too complex?  </t>
          <t>
You can always return the simplest form</t>
        </li>
      </ol>
      <artwork><![CDATA[
RateLimit:"default";r=50;t=60
]]></artwork>
      <t>The policy key clearly connects the current usage status of a policy to the defined limits.
   So for the following field:</t>
      <artwork><![CDATA[
RateLimit-Policy: "sliding";q=100;w=60;burst=1000
RateLimit-Policy: "fixed";q=5000;w=3600;burst=0
RateLimit: "sliding";r=50;t=44
]]></artwork>
      <t>the value "sliding" identifies the policy being reported.</t>
      <ol spacing="normal" type="1"><li>
          <t>Can intermediaries alter RateLimit header fields?  </t>
          <t>
Generally, they should not because it might result in requests not being handled.
 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 cases 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 likely be not interoperable. We thus decided to leave <tt>w</tt> as
an informational parameter and only rely on the limit, remaining and reset parameters
for defining the throttling
behavior.</t>
        </li>
        <li>
          <t>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 it 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.</t>
        </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>
          <t><tt>X-RateLimit-Limit</tt>,
<tt>X-RateLimit-Remaining</tt>,
<tt>X-RateLimit-Reset</tt>;</t>
        </li>
      </ul>
      <t>There are variants too, where the window is specified
in the header field name, e.g.:</t>
      <ul spacing="normal">
        <li>
          <t><tt>x-ratelimit-limit-minute</tt>, <tt>x-ratelimit-limit-hour</tt>, <tt>x-ratelimit-limit-day</tt></t>
        </li>
        <li>
          <t><tt>x-ratelimit-remaining-minute</tt>, <tt>x-ratelimit-remaining-hour</tt>, <tt>x-ratelimit-remaining-day</tt></t>
        </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>
              <t>seconds remaining to the window expiration</t>
            </li>
            <li>
              <t>milliseconds remaining to the window expiration</t>
            </li>
            <li>
              <t>seconds since UTC, in UNIX Timestamp <xref target="UNIX"/></t>
            </li>
            <li>
              <t>a datetime, either <tt>IMF-fixdate</tt> <xref target="HTTP"/> or <xref target="RFC3339"/></t>
            </li>
          </ul>
        </li>
        <li>
          <t>different headers, with the same semantic, are used by different implementers:  </t>
          <ul spacing="normal">
            <li>
              <t>X-RateLimit-Limit and X-Rate-Limit-Limit</t>
            </li>
            <li>
              <t>X-RateLimit-Remaining and X-Rate-Limit-Remaining</t>
            </li>
            <li>
              <t>X-RateLimit-Reset and X-Rate-Limit-Reset</t>
            </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 parameter value related to the ratio between the current and the maximum throughput.
e.g.</t>
      <artwork><![CDATA[
RateLimit-Policy: "sliding";q=12;w=1
; using 50% of throughput, that is 6 units/s
RateLimit: "sliding";q=12;r=6;t=1

]]></artwork>
      <t>If this is the case, the optimal solution is to achieve</t>
      <artwork><![CDATA[
RateLimit-Policy: "sliding";q=12;w=1
; using 100% of throughput, that is 12 units/s
RateLimit: "sliding";q=12;r=1;t=1
]]></artwork>
      <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,
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-08">
        <name>Since draft-ietf-httpapi-ratelimit-headers-08</name>
        <ul spacing="normal">
          <li>
            <t>Added Problem Types</t>
          </li>
          <li>
            <t>Clarified when to use RateLimit-Policy vs RateLimit fields</t>
          </li>
        </ul>
      </section>
      <section numbered="false" removeInRFC="true" anchor="since-draft-ietf-httpapi-ratelimit-headers-07">
        <name>Since draft-ietf-httpapi-ratelimit-headers-07</name>
        <ul spacing="normal">
          <li>
            <t>Refactored both fields to lists of Items that identify policy and use parameters</t>
          </li>
          <li>
            <t>Added quota unit parameter</t>
          </li>
          <li>
            <t>Added partition key parameter</t>
          </li>
        </ul>
      </section>
      <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>
            <t>Split policy informatiom in RateLimit-Policy #81</t>
          </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>
            <t>Address throttling scope #83</t>
          </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>
            <t>Update IANA considerations #60</t>
          </li>
          <li>
            <t>Use Structured fields #58</t>
          </li>
          <li>
            <t>Reorganize document #67</t>
          </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>
            <t>Use I-D.httpbis-semantics, which includes referencing delay-seconds
instead of delta-seconds. #5</t>
          </li>
        </ul>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
Z8H/BeKXe9tRwgAA

-->

</rfc>
