Mem

Mem CoreApi__service-info API

The CoreApi__service-info API from Mem — 1 operation(s) for coreapi__service-info.

Operations 1

GET /v1/service-info Get Service Info #

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/mem-coreapi-service-info-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

mem-coreapi-service-info-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: The external developer API exposed through api.mem.ai. This compatibility projection remains independent from first-party product routes.
  title: Mem Public Client Core API Service Info API
  version: 1.0.0
servers:
- url: https://api.mem.ai
security:
- bearerAuth: []
tags:
- name: CoreApi__service-info
paths:
  /v1/service-info:
    get:
      operationId: get_service_info_v1_service_info_get
      parameters:
      - in: header
        name: If-None-Match
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: If-None-Match
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoreApi__ServiceInfoResponseSchema'
          description: Successful Response
        '304':
          description: Not modified
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoreApi__ApiError'
          description: Unprocessable Content
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CoreApi__ApiError'
          description: Internal Server Error
      summary: Get Service Info
      tags:
      - CoreApi__service-info
components:
  schemas:
    CoreApi__SessionConfigVariant:
      enum:
      - STANDARD
      - CLAUDE_SONNET_4_6
      - GPT_5_2
      - GPT_5_4
      - GPT_5_6_TERRA
      - CLAUDE_SONNET_5
      - GEMINI_3_FLASH
      - GEMINI_3_1_PRO
      - GEMINI_3_5_FLASH
      title: SessionConfigVariant
      type: string
    CoreApi__PlanId:
      enum:
      - free
      - paid
      title: PlanId
      type: string
    CoreApi__ApiError:
      description: The full error envelope emitted by every Mem API service.
      properties:
        error_category:
          title: Error Category
          type: string
        error_metadata:
          $ref: '#/components/schemas/CoreApi__ApiErrorMetadata'
      required:
      - error_category
      - error_metadata
      title: ApiError
      type: object
    CoreApi__SupportedFeaturesSchema:
      properties:
        chat:
          $ref: '#/components/schemas/CoreApi__SupportedChatSettingsSchema'
      required:
      - chat
      title: SupportedFeaturesSchema
      type: object
    CoreApi__ChromeExtensionServiceInfoSchema:
      properties:
        minimum_supported_version:
          title: Minimum Supported Version
          type: string
      required:
      - minimum_supported_version
      title: ChromeExtensionServiceInfoSchema
      type: object
    CoreApi__ApiErrorMetadata:
      description: The ``error_metadata`` object nested inside every error envelope.
      properties:
        error_kind:
          title: Error Kind
          type: string
        message:
          title: Message
          type: string
        request_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Request Id
      required:
      - error_kind
      - message
      title: ApiErrorMetadata
      type: object
    CoreApi__SupportedSettingsSchemaVersion:
      enum:
      - 1
      title: SupportedSettingsSchemaVersion
      type: integer
    CoreApi__SupportedSettingsSchema:
      properties:
        features:
          $ref: '#/components/schemas/CoreApi__SupportedFeaturesSchema'
        schema_version:
          $ref: '#/components/schemas/CoreApi__SupportedSettingsSchemaVersion'
      required:
      - schema_version
      - features
      title: SupportedSettingsSchema
      type: object
    CoreApi__SupportedChatSettingsSchema:
      properties:
        models:
          items:
            $ref: '#/components/schemas/CoreApi__SupportedChatModelSchema'
          title: Models
          type: array
      required:
      - models
      title: SupportedChatSettingsSchema
      type: object
    CoreApi__SupportedChatModelSchema:
      properties:
        is_selectable:
          title: Is Selectable
          type: boolean
        label:
          title: Label
          type: string
        plans:
          items:
            $ref: '#/components/schemas/CoreApi__PlanId'
          title: Plans
          type: array
        provider:
          $ref: '#/components/schemas/CoreApi__SupportedChatModelProvider'
        variant:
          $ref: '#/components/schemas/CoreApi__SessionConfigVariant'
      required:
      - variant
      - label
      - provider
      - plans
      - is_selectable
      title: SupportedChatModelSchema
      type: object
    CoreApi__SupportedChatModelProvider:
      enum:
      - STANDARD
      - ANTHROPIC
      - OPENAI
      - GOOGLEGEMINI
      title: SupportedChatModelProvider
      type: string
    CoreApi__ServiceInfoResponseSchema:
      properties:
        chrome_extension:
          $ref: '#/components/schemas/CoreApi__ChromeExtensionServiceInfoSchema'
        supported_settings:
          $ref: '#/components/schemas/CoreApi__SupportedSettingsSchema'
      required:
      - chrome_extension
      - supported_settings
      title: ServiceInfoResponseSchema
      type: object
  securitySchemes:
    bearerAuth:
      scheme: bearer
      type: http
    CoreApi__AssetAccessToken:
      in: query
      name: token
      type: apiKey
    CoreApi__Authorization:
      in: header
      name: Authorization
      type: apiKey