Altimate AI PUBLIC_PROMPT_LIBRARY API

The PUBLIC_PROMPT_LIBRARY API from Altimate AI — 2 operation(s) for public_prompt_library.

Operations 2

POST /public/prompts Create Public Prompt #
DELETE /public/prompts/{prompt_id} Delete Public Prompt #

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/altimate-ai-public-prompt-library-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

altimate-ai-public-prompt-library-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Fast ACCOUNT_COSTS PUBLIC PROMPT LIBRARY API
  version: 0.1.0
servers:
- url: https://api.myaltimate.com
  description: Base URL reconciled from apis.yml
tags:
- name: PUBLIC_PROMPT_LIBRARY
paths:
  /public/prompts:
    post:
      tags:
      - PUBLIC_PROMPT_LIBRARY
      summary: Create Public Prompt
      description: 'Create a public prompt (service user only).

        This endpoint is specifically for service users to create public prompts.'
      operationId: create_public_prompt_public_prompts_post
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreatePublicPromptRequest'
        required: true
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PromptResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      deprecated: true
      security:
      - HTTPBearer: []
      - HTTPBearer: []
  /public/prompts/{prompt_id}:
    delete:
      tags:
      - PUBLIC_PROMPT_LIBRARY
      summary: Delete Public Prompt
      description: 'Delete a public prompt (service user only).

        This endpoint is specifically for service users to delete public prompts.'
      operationId: delete_public_prompt_public_prompts__prompt_id__delete
      deprecated: true
      security:
      - HTTPBearer: []
      - HTTPBearer: []
      parameters:
      - name: prompt_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
          title: Prompt Id
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    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
    PromptResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        title:
          type: string
          title: Title
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
        prompt_text:
          type: string
          title: Prompt Text
        tags:
          items:
            type: string
          type: array
          title: Tags
        teams:
          anyOf:
          - items:
              type: integer
            type: array
          - type: 'null'
          title: Teams
        created_by:
          type: integer
          title: Created By
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        last_used_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Last Used At
        attributes:
          additionalProperties: true
          type: object
          title: Attributes
        is_public:
          type: boolean
          title: Is Public
          default: false
      type: object
      required:
      - id
      - title
      - prompt_text
      - created_by
      - created_at
      - updated_at
      title: PromptResponse
      description: Response schema for a single prompt
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CreatePublicPromptRequest:
      properties:
        title:
          anyOf:
          - type: string
            maxLength: 255
          - type: 'null'
          title: Title
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
        prompt_text:
          type: string
          minLength: 1
          title: Prompt Text
        tags:
          items:
            type: string
          type: array
          title: Tags
        attributes:
          additionalProperties: true
          type: object
          title: Attributes
      type: object
      required:
      - prompt_text
      title: CreatePublicPromptRequest
      description: Request schema for creating public prompts (service user only)
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer