Civitai Permissions API

Permission checks for the current bearer.

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/civitai-permissions-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

civitai-permissions-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Civitai Orchestration Blobs Permissions API
  version: v2
  description: 'Submit AI generation workflows — image, video, audio, language, and LoRA training — through a single

    contract. The Orchestration API races multiple providers and engines behind one workflow surface and

    delivers results via webhooks or polling. Authenticate with a Bearer token issued at civitai.com.

    '
  contact:
    name: Civitai Developer Support
    url: https://developer.civitai.com/orchestration/
  termsOfService: https://civitai.com/content/tos
  license:
    name: Civitai Terms of Service
    url: https://civitai.com/content/tos
servers:
- url: https://orchestration.civitai.com
  description: Civitai Orchestration API
security:
- BearerAuth: []
tags:
- name: Permissions
  description: Permission checks for the current bearer.
paths:
  /permissions/check:
    get:
      operationId: checkPermissions
      summary: Check Permissions
      tags:
      - Permissions
      security:
      - BearerAuth: []
      parameters:
      - name: entityType
        in: query
        required: true
        schema:
          type: string
          enum:
          - Model
          - ModelVersion
          - Image
          - Post
          - Article
      - name: entityId
        in: query
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: Permission decisions for the current bearer.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PermissionResult'
components:
  schemas:
    PermissionResult:
      type: object
      properties:
        entityType:
          type: string
        entityId:
          type: integer
        canView:
          type: boolean
        canEdit:
          type: boolean
        canDelete:
          type: boolean
        canDownload:
          type: boolean
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: token
      description: Personal API token issued at https://civitai.com/user/account.