---
title: "Rate Limit Overview"
url: "https://kiwi.arashsheyda.me/apis/git-hub-v3-rest-api-1/versions/4cb06d26-20a0-409c-8492-8406889b7eb4/schemas/rate-limit-overview"
---

> Full API specification: https://kiwi.arashsheyda.me/apis/git-hub-v3-rest-api-1/versions/4cb06d26-20a0-409c-8492-8406889b7eb4.md

# Rate Limit Overview

Rate Limit Overview

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: GitHub v3 REST API
  version: 1.1.4
servers:
  - url: "{protocol}://{hostname}/api/v3"
    variables:
      hostname:
        description: Self-hosted Enterprise Server or Enterprise Cloud hostname
        default: HOSTNAME
      protocol:
        description: Self-hosted Enterprise Server or Enterprise Cloud protocol
        default: http
components:
  schemas:
    rate-limit:
      title: Rate Limit
      type: object
      properties:
        limit:
          type: integer
        remaining:
          type: integer
        reset:
          type: integer
        used:
          type: integer
      required:
        - limit
        - remaining
        - reset
        - used
    rate-limit-overview:
      title: Rate Limit Overview
      description: Rate Limit Overview
      type: object
      properties:
        resources:
          type: object
          properties:
            core:
              $ref: "#/components/schemas/rate-limit"
            graphql:
              $ref: "#/components/schemas/rate-limit"
            search:
              $ref: "#/components/schemas/rate-limit"
            source_import:
              $ref: "#/components/schemas/rate-limit"
            integration_manifest:
              $ref: "#/components/schemas/rate-limit"
            code_scanning_upload:
              $ref: "#/components/schemas/rate-limit"
            actions_runner_registration:
              $ref: "#/components/schemas/rate-limit"
            scim:
              $ref: "#/components/schemas/rate-limit"
          required:
            - core
            - search
        rate:
          $ref: "#/components/schemas/rate-limit"
      required:
        - rate
        - resources
```
