Appwrite Growth API

Internal growth surface exposed in the published console spec. 1 operations across 1 paths in the Appwrite 2.0.0 OpenAPI.

Operations 1

POST /growth/installations Create or update a self-hosted installation record #

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/appwrite-growth-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

appwrite-growth-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Appwrite Growth API
  description: Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)
  version: 2.0.0
  termsOfService: https://appwrite.io/policy/terms
  contact:
    name: Appwrite Team
    url: https://appwrite.io/support
    email: team@appwrite.io
  license:
    name: BSD-3-Clause
    url: https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE
servers:
- url: https://cloud.appwrite.io/v1
  description: Appwrite Cloud endpoint.
- url: https://{region}.cloud.appwrite.io/v1
  description: Appwrite Cloud regional endpoint. Replace `{region}` with your project region.
  variables:
    region:
      default: fra
      description: Appwrite Cloud region.
tags:
- name: growth
  description: Appwrite growth service.
paths:
  /growth/installations:
    post:
      summary: Create or update a self-hosted installation record
      operationId: growthCreateInstallation
      tags:
      - growth
      description: Create or update a self-hosted installation record.
      responses:
        '204':
          description: No content
      deprecated: false
      x-appwrite:
        group: null
        demo: growth/create-installation.md
        rate-limit: 0
        rate-time: 3600
        rate-key: url:{url},ip:{ip}
        scope: public
        platforms:
        - manager
        packaging: false
        public: true
        auth:
          manager: []
      security:
      - Project: []
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  description: Admin email from the installation.
                  type: string
                  example: email@example.com
                  format: email
                name:
                  description: Admin name.
                  type: string
                  default: ''
                  example: <NAME>
                version:
                  description: Appwrite version.
                  type: string
                  default: ''
                  example: <VERSION>
                domain:
                  description: Installation domain.
                  type: string
                  default: ''
                  example: <DOMAIN>
                database:
                  description: Database adapter.
                  type: string
                  default: ''
                  example: <DATABASE>
                hostIp:
                  description: Resolved installation host IP address.
                  type: string
                  default: ''
                  example: <HOST_IP>
                userAgent:
                  description: Installation user agent.
                  type: string
                  default: ''
                  example: <USER_AGENT>
                os:
                  description: Installation operating system.
                  type: string
                  default: ''
                  example: <OS>
                arch:
                  description: Installation CPU architecture.
                  type: string
                  default: ''
                  example: <ARCH>
                cpus:
                  description: Installation CPU count.
                  type: integer
                  format: int32
                ram:
                  description: Installation RAM in MB.
                  type: integer
                  format: int32
              required:
              - email
components:
  securitySchemes:
    Project:
      type: apiKey
      name: X-Appwrite-Project
      description: Your project ID
      in: header
      x-appwrite:
        platforms:
        - client
        - server
        - console
        demo: <YOUR_PROJECT_ID>
externalDocs:
  description: Full API docs, specs and tutorials
  url: https://appwrite.io/docs