Rentberry Landing Pages API

Landing Pages

Operations 1

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-landing-pages-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-landing-pages-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rentberry Landing Pages 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: Landing Pages
  description: Landing Pages
paths:
  /v{version}/hyperlinking/:
    get:
      tags:
      - Landing Pages
      summary: Get all hyperlink sets
      description: Available since API version 4. Returns all hyperlink sets used for landing pages. Hyperlink sets contain organized links for different regions and listing types.
      operationId: get_api_v4_get_all_hyperlinks
      parameters:
      - name: version
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      responses:
        '200':
          description: List of all hyperlink sets
          content:
            application/json:
              schema:
                type: array
                items:
                  properties:
                    id:
                      description: Unique identifier for the hyperlink set
                      type: integer
                    name:
                      description: Name of the hyperlink set
                      type: string
                    links:
                      description: List of hyperlinks in this set
                      type: array
                      items:
                        properties:
                          url:
                            description: URL of the hyperlink
                            type: string
                          text:
                            description: Display text for the hyperlink
                            type: string
                          type:
                            description: Type of hyperlink (city, state, etc.)
                            type: string
                          meta:
                            description: Additional metadata for the hyperlink
                            type: object
                        type: object
                    region:
                      description: Geographic region for this hyperlink set
                      type: string
                    listingType:
                      description: Type of listing these hyperlinks are for
                      type: string
                      enum:
                      - apartment
                      - house
                      - condo
                      - townhouse
                      - duplex
                      - loft
                      - room
                  type: object
              example:
              - id: 1
                name: Popular California Apartments
                links:
                - url: /ca/los-angeles/apartments-for-rent
                  text: Los Angeles Apartments
                  type: city
                  meta:
                    population: 3849000
                - url: /ca/san-francisco/apartments-for-rent
                  text: San Francisco Apartments
                  type: city
                  meta:
                    population: 865000
                region: California
                listingType: apartment
        '404':
          description: No hyperlink sets found