Binarly UserStorage API

The UserStorage API from Binarly — 2 operation(s) for userstorage.

Operations 4

POST /api/v4/userStorage Create user storage record #
GET /api/v4/userStorage/{key} Get user storage record by its key #
PUT /api/v4/userStorage/{key} Update user storage record by its key #
DELETE /api/v4/userStorage/{key} Delete user storage record by its key #

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/binarly-userstorage-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

binarly-userstorage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Binarly Assistant User Storage API
  version: 4.275.2
security:
- auth: []
tags:
- name: UserStorage
paths:
  /api/v4/userStorage:
    post:
      summary: Create user storage record
      operationId: CreateUserStorageRecord
      x-permission: ''
      tags:
      - UserStorage
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserStorageRecordPayload'
      responses:
        '201':
          description: success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserStorageRecord'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '409':
          $ref: '#/components/responses/Conflict'
        '500':
          $ref: '#/components/responses/InternalServerError'
  /api/v4/userStorage/{key}:
    get:
      summary: Get user storage record by its key
      operationId: GetUserStorageRecord
      x-permission: ''
      tags:
      - UserStorage
      parameters:
      - name: key
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/UserStorageKey'
      responses:
        '200':
          description: success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserStorageRecord'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
    put:
      summary: Update user storage record by its key
      operationId: UpdateUserStorageRecord
      x-permission: ''
      tags:
      - UserStorage
      parameters:
      - name: key
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/UserStorageKey'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UserStorageRecordPayload'
      responses:
        '200':
          description: success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserStorageRecord'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '500':
          $ref: '#/components/responses/InternalServerError'
    delete:
      summary: Delete user storage record by its key
      operationId: DeleteUserStorageRecord
      x-permission: ''
      tags:
      - UserStorage
      parameters:
      - name: key
        in: path
        required: true
        schema:
          $ref: '#/components/schemas/UserStorageKey'
      responses:
        '204':
          description: success
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
components:
  schemas:
    WithUserStorageRecordTTL:
      type: object
      required:
      - ttl
      properties:
        ttl:
          type: integer
          format: int64
          minimum: 0
    UserStorageRecordPayload:
      allOf:
      - $ref: '#/components/schemas/WithOptionalUserStorageKey'
      - $ref: '#/components/schemas/WithOptionalUserStorageValue'
      - $ref: '#/components/schemas/WithOptionalUserStorageRecordTTL'
    ForbiddenErrorResponse:
      type: object
      required:
      - message
      - permission
      - resourceName
      properties:
        message:
          type: string
        permission:
          type: string
        resourceName:
          type: string
        details:
          type: array
          items:
            $ref: '#/components/schemas/ErrorDetail'
    WithUserStorageKey:
      type: object
      required:
      - key
      properties:
        key:
          $ref: '#/components/schemas/UserStorageKey'
    WithUserStorageValue:
      type: object
      required:
      - value
      properties:
        value:
          type: object
    ErrorResponse:
      required:
      - message
      type: object
      properties:
        message:
          type: string
          readOnly: true
          x-go-type-skip-optional-pointer: true
        details:
          type: array
          items:
            $ref: '#/components/schemas/ErrorDetail'
    WithOptionalUserStorageKey:
      type: object
      properties:
        key:
          $ref: '#/components/schemas/UserStorageKey'
    ErrorDetail:
      type: object
      required:
      - error
      properties:
        reason:
          type: string
          x-go-type-skip-optional-pointer: true
        field:
          type: string
          x-go-type-skip-optional-pointer: true
        service:
          type: string
          x-go-type-skip-optional-pointer: true
    WithOptionalUserStorageValue:
      type: object
      properties:
        value:
          type: object
    UserStorageRecord:
      allOf:
      - $ref: '#/components/schemas/WithUserStorageKey'
      - $ref: '#/components/schemas/WithUserStorageValue'
      - $ref: '#/components/schemas/WithCreateTime'
      - $ref: '#/components/schemas/WithUserStorageRecordTTL'
    UserStorageKey:
      type: string
    WithCreateTime:
      type: object
      required:
      - createTime
      properties:
        createTime:
          type: string
          readOnly: true
          example: '2024-01-01T01:00:00Z'
    WithOptionalUserStorageRecordTTL:
      type: object
      properties:
        ttl:
          type: integer
          format: int64
          minimum: 0
  responses:
    Forbidden:
      description: Forbidden
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ForbiddenErrorResponse'
    Unauthorized:
      description: Unauthorized
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    BadRequest:
      description: Bad request
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    Conflict:
      description: Conflict
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    InternalServerError:
      description: Internal server error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
    NotFound:
      description: Not Found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
  securitySchemes:
    auth:
      type: http
      scheme: bearer
      bearerFormat: JWT