Mealie Admin: AI Providers API

The Admin: AI Providers API from Mealie — 2 operation(s) for admin: ai providers.

Operations 4

POST /api/admin/groups/{group_id}/ai-providers/providers Create Ai Provider #
GET /api/admin/groups/{group_id}/ai-providers/providers/{provider_id} Get Ai Provider #
PUT /api/admin/groups/{group_id}/ai-providers/providers/{provider_id} Update Ai Provider #
DELETE /api/admin/groups/{group_id}/ai-providers/providers/{provider_id} Delete Ai Provider #

Documentation

Specifications

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/mealie-admin-ai-providers-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

mealie-admin-ai-providers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: 'Mealie Admin: AI Providers API'
  description: '

    Mealie is a web application for managing your recipes, meal plans, and shopping lists. This is the Restful

    API interactive documentation that can be used to explore the API. If you''re justing getting started with

    the API and want to get started quickly, you can use the

    [API Usage | Mealie Docs](https://docs.mealie.io/documentation/getting-started/api-usage/)

    as a reference for how to get started.



    If you have any questions or comments about mealie, please use the discord server to talk to the developers or other

    community members. If you''d like to file an issue, please use the

    [GitHub Issue Tracker | Mealie](https://github.com/mealie-recipes/mealie/issues/new/choose)



    ## Helpful Links

    - [Home Page](https://mealie.io)

    - [Documentation](https://docs.mealie.io)

    - [Discord](https://discord.gg/QuStdQGSGK)

    - [Demo](https://demo.mealie.io)

    '
  version: nightly
tags:
- name: 'Admin: AI Providers'
paths:
  /api/admin/groups/{group_id}/ai-providers/providers:
    post:
      tags:
      - 'Admin: AI Providers'
      summary: Create Ai Provider
      operationId: create_ai_provider_api_admin_groups__group_id__ai_providers_providers_post
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: group_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Group Id
      - name: accept-language
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Accept-Language
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AIProviderCreate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AIProviderOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/admin/groups/{group_id}/ai-providers/providers/{provider_id}:
    get:
      tags:
      - 'Admin: AI Providers'
      summary: Get Ai Provider
      operationId: get_ai_provider_api_admin_groups__group_id__ai_providers_providers__provider_id__get
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: group_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Group Id
      - name: provider_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Provider Id
      - name: accept-language
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Accept-Language
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AIProviderOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - 'Admin: AI Providers'
      summary: Update Ai Provider
      operationId: update_ai_provider_api_admin_groups__group_id__ai_providers_providers__provider_id__put
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: group_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Group Id
      - name: provider_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Provider Id
      - name: accept-language
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Accept-Language
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AIProviderUpdate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AIProviderOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - 'Admin: AI Providers'
      summary: Delete Ai Provider
      operationId: delete_ai_provider_api_admin_groups__group_id__ai_providers_providers__provider_id__delete
      security:
      - OAuth2PasswordBearer: []
      parameters:
      - name: group_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Group Id
      - name: provider_id
        in: path
        required: true
        schema:
          type: string
          format: uuid4
          title: Provider Id
      - name: accept-language
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Accept-Language
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AIProviderOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    AIProviderOut:
      properties:
        name:
          type: string
          title: Name
        baseUrl:
          anyOf:
          - type: string
          - type: 'null'
          title: Baseurl
        model:
          type: string
          title: Model
        timeout:
          type: integer
          title: Timeout
          default: 300
        requestHeaders:
          additionalProperties:
            type: string
          type: object
          title: Requestheaders
          default: {}
        requestParams:
          additionalProperties:
            type: string
          type: object
          title: Requestparams
          default: {}
        id:
          type: string
          format: uuid4
          title: Id
      type: object
      required:
      - name
      - model
      - id
      title: AIProviderOut
    AIProviderUpdate:
      properties:
        name:
          type: string
          title: Name
        baseUrl:
          anyOf:
          - type: string
          - type: 'null'
          title: Baseurl
        apiKey:
          type: string
          title: Apikey
          default: ''
        model:
          type: string
          title: Model
        timeout:
          type: integer
          title: Timeout
          default: 300
        requestHeaders:
          additionalProperties:
            type: string
          type: object
          title: Requestheaders
          default: {}
        requestParams:
          additionalProperties:
            type: string
          type: object
          title: Requestparams
          default: {}
      type: object
      required:
      - name
      - model
      title: AIProviderUpdate
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    AIProviderCreate:
      properties:
        name:
          type: string
          title: Name
        baseUrl:
          anyOf:
          - type: string
          - type: 'null'
          title: Baseurl
        apiKey:
          type: string
          title: Apikey
          default: ''
        model:
          type: string
          title: Model
        timeout:
          type: integer
          title: Timeout
          default: 300
        requestHeaders:
          additionalProperties:
            type: string
          type: object
          title: Requestheaders
          default: {}
        requestParams:
          additionalProperties:
            type: string
          type: object
          title: Requestparams
          default: {}
      type: object
      required:
      - name
      - model
      title: AIProviderCreate
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
  securitySchemes:
    OAuth2PasswordBearer:
      type: oauth2
      flows:
        password:
          scopes: {}
          tokenUrl: /api/auth/token