> ## Documentation Index
> Fetch the complete documentation index at: https://docs.myme.so/llms.txt
> Use this file to discover all available pages before exploring further.

# Get current tenant quotas

> Returns the calling tenant's quota ceilings, resolved from the calling credential's tenant so the caller doesn't need to know its own tenant id. Returns a row of nulls when no per-tenant override is configured (env defaults apply). Platform-admin keys with no tenant id receive `400` — use `GET /tenants/{id}/quotas` with the explicit id instead. Admin or tenant_admin.



## OpenAPI

````yaml /openapi.json get /tenants/me/quotas
openapi: 3.1.0
info:
  title: Marfa API
  version: 4.2.0
  description: Typed data layer for structured personal data
servers: []
security: []
paths:
  /tenants/me/quotas:
    get:
      tags:
        - Tenants
      summary: Get current tenant quotas
      description: >-
        Returns the calling tenant's quota ceilings, resolved from the calling
        credential's tenant so the caller doesn't need to know its own tenant
        id. Returns a row of nulls when no per-tenant override is configured
        (env defaults apply). Platform-admin keys with no tenant id receive
        `400` — use `GET /tenants/{id}/quotas` with the explicit id instead.
        Admin or tenant_admin.
      responses:
        '200':
          description: Quota row for the calling tenant.
          content:
            application/json:
              schema:
                type: object
                properties:
                  tenant_id:
                    type: string
                  items_limit:
                    type: integer
                    nullable: true
                  webhooks_limit:
                    type: integer
                    nullable: true
                  blobs_limit:
                    type: integer
                    nullable: true
                  storage_bytes_limit:
                    type: integer
                    nullable: true
                  rate_per_minute_limit:
                    type: integer
                    nullable: true
                  updated_at:
                    type: string
                    nullable: true
                required:
                  - tenant_id
                  - items_limit
                  - webhooks_limit
                  - blobs_limit
                  - storage_bytes_limit
                  - rate_per_minute_limit
                  - updated_at
        '400':
          description: Caller has no tenant_id (platform admin).
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - validation_error
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - unauthorized
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                        enum:
                          - forbidden
                      message:
                        type: string
                      details:
                        type: object
                        additionalProperties:
                          nullable: true
                    required:
                      - code
                      - message
                required:
                  - error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key or OAuth Token
      description: Pass an API key (marfa_k1_...) or OAuth access token (marfa_at_...)

````