ASP.NET Core Web API guide · .NET SDK

Web API controller rate limiting,one attribute per action.

Register the middleware, then price each action with [ReqKey(Credits = 2)] and skip health checks with [SkipReqKey]. Keys, credits, and plan limits are handled for you.

  • Keys issued per customer
  • Credits that refill
  • Limits per plan, not per process

Official SDKs with drop-in middleware for the stack you already run

  • Python
  • Node.js
  • Go
  • Rust
  • PHP
  • .NET
  • Java
API requests validated
100M+
Average key validation
<5ms
Average analytics ingest
<5ms
Check and log, end to end
<10ms

The usual ASP.NET Core Web API rate limiter counts requests. It doesn’t know your customers.

Controllers use the built-in limiter through [EnableRateLimiting("policy")] and [DisableRateLimiting], with policies registered in AddRateLimiter.

With [EnableRateLimiting]today
// OrdersController.cs — built-in attributes[ApiController]
[Route("api/[controller]")]
[EnableRateLimiting("fixed")]
public sealed class OrdersController : ControllerBase
{
    [HttpGet("health")]
    [DisableRateLimiting]
    public IActionResult Health() => Ok();
}
  • Every instance keeps its own in-memory window
  • A policy counts requests; it can’t charge an order 2 and a lookup 1
  • No API keys: issuing, hashing, scoping, and revoking them is still yours to build
  • No credit balance: a request can’t cost 5 on one route and 1 on another, or refill each month
  • One limit for everyone — no per-plan limits for Free, Pro, and Enterprise customers
  • No per-customer usage log to answer “why was I blocked?” or bill against
With ReqKey in ASP.NET Core Web APIone middleware
  • API keys issued per customer, prefixed, hashed, and revocable from the dashboard
  • A credit balance per customer — price each route, refill every hour, day, week, or month
  • Rate limits set per plan, shared by all of a customer’s keys, from 1 second to 24 hours
  • The same count on every worker, instance, and region — no Redis to run
  • Over the limit? A 429 with Retry-After, and no credits charged
  • Every request logged per customer — status, latency, endpoint — in under 5ms
Actions read the verdict with HttpContext.GetReqKeyDecision(). See the code

ASP.NET Core Web API in three steps, one of them code.

ReqKey runs inside your API, not in front of it. Your server asks one question per request and gets an answer in under 5ms.

  1. 1

    Install the SDK

    dotnet add package ReqKey.AspNetCore

  2. 2

    Set your project key

    Copy it from the dashboard into REQKEY_PROJECT_KEY. It stays on your server.

  3. 3

    Add the ASP.NET Core Web API middleware

    Every request is checked, charged, and logged before your handler runs.

Program.csdotnet add package ReqKey.AspNetCore
// Program.cs
using ReqKey;
using ReqKey.AspNetCore;
 
var builder = WebApplication.CreateBuilder(args);
builder.Services.AddControllers();
builder.Services.AddReqKey(options =>
{
options.ProjectKey = builder.Configuration["REQKEY_PROJECT_KEY"];
options.ApiId = "api_store";
options.KeyName = "Authorization";
options.KeyScheme = ApiKeyScheme.Bearer;
});
 
var app = builder.Build();
app.UseRouting();
app.UseReqKey();
app.MapControllers();
app.Run();
 
// Controllers/OrdersController.cs
[ApiController]
[Route("api/[controller]")]
public sealed class OrdersController : ControllerBase
{
[HttpPost]
[ReqKey(Credits = 2, Resource = "/v1/orders")]
public IActionResult Create()
{
var decision = HttpContext.GetReqKeyDecision();
return Created("/api/orders/123", new { id = "123", creditsRemaining = decision?.CreditsRemaining });
}
 
[HttpGet("health")]
[SkipReqKey]
public IActionResult Health() => Ok(new { ok = true });
}
Also in .NET: ASP.NET CoreFull .NET reference

Every request gets one of these answers

  • 200Valid key, credits charged — your handler runs
  • 402Out of credits
  • 403Key disabled, or not allowed on this API
  • 429Over the rate limit — no credits charged

Where ReqKey sits

Your customer
Your APIReqKey, under 5ms
Your handler

Responses go straight back to your customer. ReqKey sees the key check and the log line, nothing else.

Credits

Charge each route what it costs you.

A lookup can cost 1 credit and a render 5, from the same balance. Excluded paths are never validated, charged, or recorded. In .NET:

Per-route credits · .NET
// Exact paths or trailing-* prefixes: never validated, charged, or recorded
options.ExcludePaths = ["/health", "/docs/*"];
 
// Or decide per request with a predicate
options.ShouldProtect = (context, _) =>
ValueTask.FromResult(context.Request.Path.StartsWithSegments("/api"));
 
// Charge different endpoints differently
options.CreditCostResolver = (context, _) =>
ValueTask.FromResult(context.Request.Method == HttpMethods.Post ? 5 : 1);
 
// Minimal APIs and MVC actions override cost per endpoint
app.MapPost("/images", HandleImage).RequireReqKey(credits: 5, apiId: "api_images");
// [ReqKey(Credits = 2, Resource = "/v1/orders")] on a controller action

Rate limits

Set limits on plans, not in code.

Your ASP.NET Core Web API code never hard-codes a number. Each plan carries its credits, refill, and rate limit; moving a customer to Pro changes all three with no deploy.

PlanCreditsRate limit
Free1,000 / month5 req / s
Pro50,000 / month50 req / s
Scale1,000,000 / month500 req / s
429Over the limit, a call is answered with Retry-After and costs nothing — no credits and no quota.

Example plans. You name them and pick the numbers.

Notes for ASP.NET Core Web API teams hit in production.

Attributes you already know

[ReqKey(Credits = 2, Resource = "/v1/orders")] prices an action; [SkipReqKey] opts one out.

Bearer keys

KeyScheme = ApiKeyScheme.Bearer reads the key from Authorization: Bearer — the header most API clients send.

Resource names

Resource groups endpoints under a stable name in analytics, even when routes have parameters.

ASP.NET Core Web API rate limiting: the questions teams ask.

Something else? Ask the team or read the docs.

  • Yes, as in the sample — so endpoint metadata like [ReqKey] and [SkipReqKey] is available.

  • Add [SkipReqKey] — the action is never validated, charged, or recorded.

  • On their plan or on the customer (consumer) in ReqKey — a number of requests per window from 1 second to 24 hours, shared by all of that customer’s keys. Your ASP.NET Core Web API code never hard-codes a limit, so upgrading a customer is a dashboard change, not a deploy.

  • A check averages under 5ms. ReqKey runs inside your app as middleware, not as a gateway in front of it, so responses go straight back to your customer.

  • You choose: fail closed and answer 503, or fail open and let requests through. Invalid keys are denied either way, and a validation is never retried, so no one is charged twice.

Ship API keys in ASP.NET Core Web APIin five minutes.

Free for your first 5 million requests every month. No card, no gateway, no rewrite.