Arcee AI Access Profiles API

The Access Profiles API from Arcee AI — 3 operation(s) for access profiles.

Operations 7

GET /app/v1/access_profiles Get All Access Profiles #
POST /app/v1/access_profiles Create Access Profile #
GET /app/v1/access_profiles/{profile_id} Get Access Profile #
PATCH /app/v1/access_profiles/{profile_id} Update Access Profile #
DELETE /app/v1/access_profiles/{profile_id} Delete Access Profile #
POST /app/v1/access_profiles/{profile_id}/models/{model_id} Add Model To Access Profile #
DELETE /app/v1/access_profiles/{profile_id}/models/{model_id} Remove Model From Access Profile #

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/arcee-ai-access-profiles-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

arcee-ai-access-profiles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AFM Access Profiles API
  version: 0.1.0
servers:
- url: https://api.arcee.ai
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Access Profiles
paths:
  /app/v1/access_profiles:
    get:
      tags:
      - Access Profiles
      summary: Get All Access Profiles
      description: Get all access profiles
      operationId: get_all_access_profiles_app_v1_access_profiles_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/AccessProfileResponse'
                type: array
                title: Response Get All Access Profiles App V1 Access Profiles Get
      security:
      - HTTPBearer: []
    post:
      tags:
      - Access Profiles
      summary: Create Access Profile
      description: Create a new access profile
      operationId: create_access_profile_app_v1_access_profiles_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateAccessProfileRequest'
        required: true
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
      - HTTPBearer: []
  /app/v1/access_profiles/{profile_id}:
    get:
      tags:
      - Access Profiles
      summary: Get Access Profile
      description: Get an access profile by ID
      operationId: get_access_profile_app_v1_access_profiles__profile_id__get
      security:
      - HTTPBearer: []
      parameters:
      - name: profile_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Profile Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    patch:
      tags:
      - Access Profiles
      summary: Update Access Profile
      description: Update an access profile
      operationId: update_access_profile_app_v1_access_profiles__profile_id__patch
      security:
      - HTTPBearer: []
      parameters:
      - name: profile_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Profile Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateAccessProfileRequest'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccessProfileResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - Access Profiles
      summary: Delete Access Profile
      description: Delete an access profile
      operationId: delete_access_profile_app_v1_access_profiles__profile_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: profile_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Profile Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /app/v1/access_profiles/{profile_id}/models/{model_id}:
    post:
      tags:
      - Access Profiles
      summary: Add Model To Access Profile
      description: Add a model to an access profile
      operationId: add_model_to_access_profile_app_v1_access_profiles__profile_id__models__model_id__post
      security:
      - HTTPBearer: []
      parameters:
      - name: profile_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Profile Id
      - name: model_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Model Id
      - name: rate_limit_profile_id
        in: query
        required: false
        schema:
          type: string
          format: uuid
          title: Rate Limit Profile Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - Access Profiles
      summary: Remove Model From Access Profile
      description: Remove a model from an access profile
      operationId: remove_model_from_access_profile_app_v1_access_profiles__profile_id__models__model_id__delete
      security:
      - HTTPBearer: []
      parameters:
      - name: profile_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Profile Id
      - name: model_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Model Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AccessProfileResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
        meta:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Meta
        is_external_default:
          type: boolean
          title: Is External Default
        is_internal_default:
          type: boolean
          title: Is Internal Default
        created_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Created At
        created_by:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Created By
        model_joins:
          items:
            $ref: '#/components/schemas/AccessProfileModelJoinResponse'
          type: array
          title: Model Joins
          default: []
      type: object
      required:
      - id
      - name
      - is_external_default
      - is_internal_default
      title: AccessProfileResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    CreateAccessProfileRequest:
      properties:
        name:
          type: string
          title: Name
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
        meta:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Meta
        model_ids:
          anyOf:
          - items:
              type: string
              format: uuid
            type: array
          - type: 'null'
          title: Model Ids
      type: object
      required:
      - name
      title: CreateAccessProfileRequest
    UpdateAccessProfileRequest:
      properties:
        name:
          anyOf:
          - type: string
          - type: 'null'
          title: Name
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
        meta:
          anyOf:
          - additionalProperties: true
            type: object
          - type: 'null'
          title: Meta
      type: object
      title: UpdateAccessProfileRequest
    AccessProfileModelJoinResponse:
      properties:
        access_profile_id:
          type: string
          format: uuid
          title: Access Profile Id
        model_id:
          type: string
          format: uuid
          title: Model Id
        rate_limit_profile_id:
          anyOf:
          - type: string
            format: uuid
          - type: 'null'
          title: Rate Limit Profile Id
      type: object
      required:
      - access_profile_id
      - model_id
      title: AccessProfileModelJoinResponse
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer