Appsamurai App API

App management endpoints

Operations 1

GET /external/app List apps #

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/appsamurai-app-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

appsamurai-app-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Storyly External App API
  version: 1.0.0
  contact: {}
  description: The Storyly External API manages apps, instances, story groups, stories, audiences and segments for Storyly, App Samurai's in-app content experience product. Harvested verbatim from the Storyly ReadMe documentation hub (docs.storyly.io/.well-known/api-catalog -> docs.storyly.io/openapi/68f9ff1ab2a841f03a72b06b).
  x-apievangelist-source: https://docs.storyly.io/openapi/68f9ff1ab2a841f03a72b06b
  x-apievangelist-method: searched
servers:
- url: https://api.storyly.io
tags:
- name: app
  description: App management endpoints
paths:
  /external/app:
    get:
      tags:
      - app
      summary: List apps
      description: List all apps for the authenticated account.
      operationId: listApps
      security:
      - bearerAuth: []
      parameters:
      - name: limit
        in: query
        schema:
          type: string
          example: '1'
        description: required=False, min_value=1, max_value=100
      - name: offset
        in: query
        schema:
          type: string
          example: '0'
        description: required=False, min_value=0
      responses:
        '200':
          description: '200'
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        account_id:
                          type: number
                          example: 9434
                        category:
                          type: string
                          example: web
                        detailed_info:
                          type: object
                          properties:
                            icon:
                              type: string
                              example: https://www.google.com/s2/favicons?sz=64&domain_url=Inbox Story
                        id:
                          type: number
                          example: 14686
                        is_inbox_story:
                          type: number
                          example: 1
                        settings:
                          type: object
                          properties:
                            is_sharable:
                              type: boolean
                              example: true
                            is_shopify:
                              type: boolean
                              example: false
                        store_id:
                          type: string
                          example: Inbox Story
                        store_type:
                          type: string
                          example: web
                        sub_category:
                          example: null
                        title:
                          type: string
                          example: Inbox Story
                        token:
                          type: string
                          example: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
                        ts_created:
                          type: string
                          example: '2023-02-03 10:51:47'
                        ts_updated:
                          type: string
                          example: '2023-02-03 10:51:47'
                    example:
                    - account_id: 9434
                      category: web
                      detailed_info:
                        icon: https://www.google.com/s2/favicons?sz=64&domain_url=Inbox Story
                      id: 14686
                      is_inbox_story: 1
                      settings:
                        is_sharable: true
                        is_shopify: false
                      store_id: Inbox Story
                      store_type: web
                      sub_category: null
                      title: Inbox Story
                      token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
                      ts_created: '2023-02-03 10:51:47'
                      ts_updated: '2023-02-03 10:51:47'
                  message:
                    type: string
                    example: Apps successfully listed
                  status:
                    type: string
                    example: ok
              examples:
                '200':
                  value:
                    data:
                    - account_id: 9434
                      category: web
                      detailed_info:
                        icon: https://www.google.com/s2/favicons?sz=64&domain_url=Inbox Story
                      id: 14686
                      is_inbox_story: 1
                      settings:
                        is_sharable: true
                        is_shopify: false
                      store_id: Inbox Story
                      store_type: web
                      sub_category: null
                      title: Inbox Story
                      token: eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9
                      ts_created: '2023-02-03 10:51:47'
                      ts_updated: '2023-02-03 10:51:47'
                    message: Apps successfully listed
                    status: ok
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token for API authentication
x-readme:
  explorer-enabled: true
  proxy-enabled: true