Rentberry Screening Reports API

Screening Reports

Operations 3

GET /v{version}/screening/criminal-report/{id} Get criminal background report (HTML) #
GET /v{version}/screening/credit-score/{id} Get credit score report (HTML) #
GET /v{version}/screening/reports-preview/{id} Get screening reports preview #

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-screening-reports-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-screening-reports-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rentberry Screening Reports 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: Screening Reports
  description: Screening Reports
paths:
  /v{version}/screening/criminal-report/{id}:
    get:
      tags:
      - Screening Reports
      summary: Get criminal background report (HTML)
      description: Available since API version 1. Returns HTML criminal background report for completed screening.
      operationId: get_api_v1_criminal_report
      parameters:
      - name: id
        in: path
        description: Screening request ID
        required: true
        schema:
          type: integer
          pattern: \d+
      - name: version
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      responses:
        '200':
          description: HTML criminal report
          content:
            application/json:
              schema:
                properties:
                  report:
                    description: HTML formatted criminal report
                    type: string
                type: object
        '401':
          description: Unauthorized
        '409':
          description: (Real code 8009) Cannot view this criminal report
        '404':
          description: (Real code 8004) User has no criminal report
        '403':
          description: (Real code 8005) Cannot get criminal report
      security:
      - XAuthToken: []
  /v{version}/screening/credit-score/{id}:
    get:
      tags:
      - Screening Reports
      summary: Get credit score report (HTML)
      description: Available since API version 1. Returns HTML credit score report for completed screening.
      operationId: get_api_v1_credit_score_report
      parameters:
      - name: id
        in: path
        description: Screening request ID
        required: true
        schema:
          type: integer
          pattern: \d+
      - name: version
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      responses:
        '200':
          description: HTML credit report
          content:
            application/json:
              schema:
                properties:
                  report:
                    description: HTML formatted credit report
                    type: string
                type: object
        '401':
          description: Unauthorized
        '409':
          description: (Real code 8009) Cannot view this credit report
        '404':
          description: (Real code 8004) User has no credit report
        '403':
          description: (Real code 8005) Cannot view credit report
      security:
      - XAuthToken: []
  /v{version}/screening/reports-preview/{id}:
    get:
      tags:
      - Screening Reports
      summary: Get screening reports preview
      description: Available since API version 1. Returns summary preview of both credit and criminal reports for completed screening.
      operationId: get_api_v1_reports_preview
      parameters:
      - name: id
        in: path
        description: Screening request ID
        required: true
        schema:
          type: integer
          pattern: \d+
      - name: version
        in: path
        required: true
        schema:
          type: string
          pattern: \d+
      responses:
        '200':
          description: Combined screening reports preview
          content:
            application/json:
              schema:
                properties:
                  criminalReport:
                    oneOf:
                    - $ref: '#/components/schemas/CriminalReportDTO'
                    description: Criminal report summary with cases
                  creditReport:
                    oneOf:
                    - $ref: '#/components/schemas/CreditReportDTO'
                    description: Credit report summary with score and details
                  tenant:
                    properties:
                      email:
                        type: string
                        example: tenant@example.com
                      firstName:
                        type: string
                        example: John
                      lastName:
                        type: string
                        example: Doe
                    type: object
                type: object
        '401':
          description: Unauthorized
        '403':
          description: (Real code 8005) Cannot view screening reports
      security:
      - XAuthToken: []
components:
  schemas:
    CreditReportDTO:
      properties:
        reportId:
          type: string
        score:
          type: integer
        collectionsCount:
          type: number
          format: float
        inquiriesCount:
          type: number
          format: float
        openAccounts:
          type: integer
        totalCreditLimitAmount:
          type: number
          format: float
        totalCreditBalanceAmount:
          type: number
          format: float
        delinquencies:
          type: integer
        publicRecords:
          type: integer
        availablePercent:
          type: integer
        alert:
          type: string
        status:
          type: string
      type: object
    CriminalReportDTO:
      properties:
        reportId:
          type: string
        criminalReportFound:
          type: boolean
        status:
          type: string
          default: NO STATUS
      type: object