4Paradigm App Store API

The App Store API from 4Paradigm — 3 operation(s) for app store.

Operations 3

GET /appstore/charts Get chart list #
POST /appstore/charts/{category} Upload chart #
GET /appstore/charts/{category}/{name}/{version} Get a chart #

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/4paradigm-app-store-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

4paradigm-app-store-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Pineapple Appstore API
  description: Pineapple
  version: 0.0.1
servers:
- url: http://127.0.0.1:1234/api
security:
- OpenID:
  - openid
  - email
  - profile
- ApiKeyAuth: []
tags:
- name: App Store
paths:
  /appstore/charts:
    get:
      tags:
      - App Store
      summary: Get chart list
      operationId: getAppstoreChartList
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChartMetaDataList'
        500:
          $ref: '#/components/responses/ServerError'
  /appstore/charts/{category}:
    parameters:
    - in: path
      name: category
      schema:
        $ref: '#/components/schemas/ChartCategory'
      required: true
      description: chart repo
    post:
      tags:
      - App Store
      summary: Upload chart
      operationId: uploadChart
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  $ref: '#/components/schemas/FileType'
      responses:
        200:
          description: OK
        400:
          $ref: '#/components/responses/RequestError'
        500:
          $ref: '#/components/responses/ServerError'
  /appstore/charts/{category}/{name}/{version}:
    parameters:
    - in: path
      name: category
      schema:
        $ref: '#/components/schemas/ChartCategory'
      required: true
      description: chart repo
    - in: path
      name: name
      schema:
        type: string
      required: true
      description: chart name
    - in: path
      name: version
      schema:
        type: string
      required: true
      description: chart version
    get:
      tags:
      - App Store
      summary: Get a chart
      operationId: getAppstoreChart
      responses:
        200:
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Chart'
        500:
          $ref: '#/components/responses/ServerError'
components:
  responses:
    RequestError:
      description: http request error
      content:
        application/json:
          schema:
            type: object
            properties:
              content:
                type: object
              message:
                type: string
              type:
                type: string
    ServerError:
      description: server error
      content:
        text/plain:
          schema:
            type: string
          example: Something went wrong.
  schemas:
    ChartFiles:
      description: chart files
      type: object
      additionalProperties:
        type: string
        format: byte
    FileType:
      description: file type for upload and Download
      type: string
      format: binary
    Chart:
      description: chart
      type: object
      properties:
        metadata:
          $ref: '#/components/schemas/ChartMetadata'
        files:
          $ref: '#/components/schemas/ChartFiles'
        version_list:
          type: array
          items:
            type: string
    ChartMetadata:
      description: chart metadata
      type: object
      properties:
        name:
          type: string
        description:
          type: string
        version:
          type: string
        url:
          type: string
        icon_link:
          type: string
        category:
          $ref: '#/components/schemas/ChartCategory'
    ChartCategory:
      description: chart repo category
      type: string
      enum:
      - public-official
      - public-practical
      - public-community
      - private
    ChartMetaDataList:
      description: chart metadata list
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/ChartMetadata'
  securitySchemes:
    OpenID:
      type: openIdConnect
      openIdConnectUrl: /.well-known/openid-configuration
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization