Rentberry SEO Redirects API

SEO Redirects

Operations 2

POST /v{version}/seo_redirect_url/{id}/hit Track redirect hit #
GET /v{version}/seo_redirect_url Get all active redirects #

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-seo-redirects-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-seo-redirects-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rentberry SEO Redirects 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: SEO Redirects
  description: SEO Redirects
paths:
  /v{version}/seo_redirect_url/{id}/hit:
    post:
      tags:
      - SEO Redirects
      summary: Track redirect hit
      description: Available since API version 1. Records a hit/click for the specified redirect URL for analytics and tracking purposes.
      operationId: post_api_v1_seo_redirect_url_hit
      parameters:
      - name: id
        in: path
        description: Redirect ID to track
        required: true
        schema:
          type: integer
          pattern: \d+
      - name: version
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      responses:
        '204':
          description: Hit recorded successfully
        '404':
          description: Redirect not found
  /v{version}/seo_redirect_url:
    get:
      tags:
      - SEO Redirects
      summary: Get all active redirects
      description: Available since API version 1. Returns list of all active SEO redirects with their URLs and configuration.
      operationId: get_api_v1_seo_redirect_url_list
      parameters:
      - name: version
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      responses:
        '200':
          description: List of active redirects
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Redirect'
components:
  schemas:
    Redirect:
      required:
      - url
      - urlFrom
      properties:
        id:
          type: integer
        url:
          type: string
          maxLength: 512
        urlFrom:
          type: string
          maxLength: 512
        saveGetString:
          type: boolean
          default: false
        httpStatus:
          type: integer
          default: 301
          enum:
          - 301
          - 302
          - 303
          - 307
          - 308
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
      type: object