Rentberry Rental Subscription API

Rental Subscription

Operations 4

POST /v{version}/rental/{rental_id}/subscription/stripe Create a rental subscription with Stripe. #
POST /v{version}/rental/subscription/{rental_subscription_id}/stripe/update Update an existing rental subscription. #
GET /v{version}/rental/subscription/{rental_subscription_id}/stripe Get rental subscription details. #
DELETE /v{version}/rental/subscription/{rental_subscription_id}/stripe Cancel a rental subscription. #

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/rentberry-rental-subscription-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

rentberry-rental-subscription-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rentberry Rental Subscription API
  description: Renting Done Right. Finally.
  version: 4
servers:
- url: https://api.rentberry.com/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Rental Subscription
  description: Rental Subscription
paths:
  /v{version}/rental/{rental_id}/subscription/stripe:
    post:
      tags:
      - Rental Subscription
      summary: Create a rental subscription with Stripe.
      description: Creates a new rental subscription and returns client secret for Stripe payment setup. Available since API version 4.
      operationId: post_api_v4_rental_subscription_stripe
      parameters:
      - name: version
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      - name: rental_id
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RentalPaymentType'
      responses:
        '200':
          description: Subscription created successfully with client secret.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StripeSubscriptionCreatedResponse'
        '400':
          description: Validation failed.
        '401':
          description: Unauthorized
        '403':
          description: Access denied to rental.
      security:
      - XAuthToken: []
  /v{version}/rental/subscription/{rental_subscription_id}/stripe/update:
    post:
      tags:
      - Rental Subscription
      summary: Update an existing rental subscription.
      description: Updates rental subscription payment details. Available since API version 4.
      operationId: post_api_v4_rental_subscription_stripe_update
      parameters:
      - name: version
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      - name: rental_subscription_id
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RentalPaymentType'
      responses:
        '200':
          description: Subscription updated successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StripeSubscriptionCreatedResponse'
        '400':
          description: Validation failed.
        '401':
          description: Unauthorized
        '403':
          description: Access denied to subscription.
      security:
      - XAuthToken: []
  /v{version}/rental/subscription/{rental_subscription_id}/stripe:
    get:
      tags:
      - Rental Subscription
      summary: Get rental subscription details.
      description: Retrieves details of a specific rental subscription. Available since API version 4.
      operationId: get_api_v4_rental_subscription_stripe_get
      parameters:
      - name: version
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      - name: rental_subscription_id
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      responses:
        '200':
          description: Subscription details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StripeSubscriptionCreatedResponse'
        '401':
          description: Unauthorized
        '403':
          description: Access denied to subscription.
        '404':
          description: Subscription not found.
      security:
      - XAuthToken: []
    delete:
      tags:
      - Rental Subscription
      summary: Cancel a rental subscription.
      description: Cancels an active rental subscription. Available since API version 4.
      operationId: delete_api_v4_rental_subscription_stripe_cancel
      parameters:
      - name: version
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      - name: rental_subscription_id
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      responses:
        '204':
          description: Subscription cancelled successfully.
        '401':
          description: Unauthorized
        '403':
          description: Access denied to subscription.
        '404':
          description: Subscription not found.
      security:
      - XAuthToken: []
components:
  schemas:
    RentalPaymentType:
      required:
      - comment
      - amount
      - paymentMethod
      properties:
        comment:
          type: string
        amount:
          type: number
        paymentMethod:
          type: string
      type: object
    StripeSubscriptionCreatedResponse:
      properties:
        clientSecret:
          type: string
        rentalSubscriptionId:
          type: integer
        amount:
          type: string
        amountTotal:
          type: string
        commissionFee:
          type: string
        status:
          type: string
        currency:
          type: string
        paymentMethod:
          type: string
        stripeSubscriptionId:
          type: string
      type: object