Root Insurance Files API

The Files API from Root Insurance — 1 operation(s) for files.

Operations 1

GET /apps/{organization_id}/files/download/{file_id} Download file #

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/root-files-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

root-files-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: 1.0.1
  title: Root Applications Files API
  description: Root is an end-to-end digital insurance platform that enables you to launch new products and digital engagement channels fast.
  termsOfService: https://rootplatform.com/about
  contact:
    name: Root support team
    url: https://rootplatform.com/contact
    email: support@root.co.za
servers:
- url: https://sandbox.uk.rootplatform.com/v1/insurance
  description: United Kingdom multi-tenant - sandbox
- url: https://api.uk.rootplatform.com/v1/insurance
  description: United Kingdom multi-tenant - production
- url: https://sandbox.rootplatform.com/v1/insurance
  description: South Africa multi-tenant - sandbox
- url: https://api.rootplatform.com/v1/insurance
  description: South Africa multi-tenant - production
security:
- basicAuth: []
tags:
- name: Files
paths:
  /apps/{organization_id}/files/download/{file_id}:
    get:
      operationId: download-file
      summary: Download file
      description: 'Download a file by its unique file ID. Files are typically attachments that have been uploaded to the system and associated with various entities like policies, claims, applications, etc.


        Note: A filename can optionally be appended to the URL for readability (e.g., `/apps/{organization_id}/files/download/{file_id}/report.pdf`), but it is not used for file identification.'
      tags:
      - Files
      x-additional-tags:
      - Endpoints
      parameters:
      - name: organization_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
        description: The unique identifier of the organization.
      - name: file_id
        in: path
        required: true
        schema:
          type: string
          format: uuid
        description: The unique identifier of the file to download.
      responses:
        '200':
          description: File downloaded successfully
          content:
            application/octet-stream:
              schema:
                type: string
                format: binary
            application/pdf:
              schema:
                type: string
                format: binary
            image/png:
              schema:
                type: string
                format: binary
            image/jpeg:
              schema:
                type: string
                format: binary
            text/plain:
              schema:
                type: string
                format: binary
          headers:
            Content-Type:
              description: The MIME type of the file
              schema:
                type: string
                example: application/pdf
            Content-Disposition:
              description: Indicates if the content should be displayed inline or downloaded as an attachment
              schema:
                type: string
                example: attachment; filename="document.pdf"
        '400':
          description: Invalid request
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                        example: invalid_request_error
                      message:
                        type: string
                        example: Missing organization ID.
                      more_info:
                        type: string
                        example: https://docs.rootplatform.com/reference/errors
              example:
                error:
                  type: invalid_request_error
                  message: Missing organization ID.
                  more_info: https://docs.rootplatform.com/reference/errors
        '404':
          description: File not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                        example: not_found_error
                      message:
                        type: string
                        example: Attachment not found
                      more_info:
                        type: string
                        example: https://docs.rootplatform.com/reference/errors
              example:
                error:
                  type: not_found_error
                  message: Attachment not found
                  more_info: https://docs.rootplatform.com/reference/errors
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
x-readme:
  explorer-enabled: true
  proxy-enabled: true
  samples-enabled: true