Serialized Documentation
Console
Plans & Pricing
Sign up
Search…
Welcome to Serialized
Basics
Accounts
Projects
Authentication
Rate limiting
Getting started
APIS
Event Sourcing API
Feeds API
Reactions API
Projections API
Tenants API
Client libraries
Java client
Javascript client
Go client (unofficial)
Tools
Swagger API Definition
Advanced
Multi-Tenancy
Encrypting Event data
Conditional requests
Request signatures
Powered By
GitBook
Rate limiting
The returned HTTP headers of any API request show your current rate limit status:
1
HTTP/1.1
200
OK
2
Content-Type: application/json
3
Serialized-RateLimit-Limit:
10000
4
Serialized-RateLimit-Remaining:
9999
5
Serialized-RateLimit-Reset:
1506939198
6
..
.
7
​
8
{
9
"aggregateId"
:
"..."
10
}
Copied!
Header name
Description
Serialized-RateLimit-Limit
The maximum number of requests you are permitted to make per hour.
Serialized-RateLimit-Remaining
The number of requests remaining in the current rate limit window.
Serialized-RateLimit-Reset
The time at which the current rate limit window resets in
UTC epoch seconds
.
Exceeding the limits
If you exceed the rate limit, an error response returns:
1
HTTP/1.1
429
Too Many Requests
2
Content-Type: application/json
3
Serialized-RateLimit-Limit:
10000
4
Serialized-RateLimit-Remaining:
0
5
Serialized-RateLimit-Reset:
1506939198
6
​
7
{
8
"code"
:
429
,
9
"message"
:
"You have requested this resource too often. Slow down."
10
}
Copied!
Basics - Previous
Authentication
Next - Basics
Getting started
Last modified
2yr ago
Copy link
Contents
Exceeding the limits