Resourcly business API

The business API from Resourcly — 2 operation(s) for business.

Operations 2

GET /business/dev-features Get business feature flags
GET /business/features Get business features

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/resourcly-business-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

resourcly-business-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: API for document processing, item similarity search, and analytics.
  title: Resourcly analytics Business API
  termsOfService: https://resourcly.com/terms
  contact:
    name: API Support
    email: support@resourcly.com
  license:
    name: Proprietary
  version: 1.0.0
servers:
- url: https://api.resourcly.com/v1
tags:
- name: business
paths:
  /business/dev-features:
    get:
      security:
      - BearerAuth: []
      description: Returns the feature flags enabled for the authenticated user's business.
      tags:
      - business
      summary: Get business feature flags
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/handlers.BusinessDevFeatures'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
  /business/features:
    get:
      security:
      - BearerAuth: []
      description: Returns a map of feature -> enabled for the authenticated user's business.
      tags:
      - business
      summary: Get business features
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/models.ErrorResponse'
components:
  schemas:
    models.ErrorResponse:
      type: object
      properties:
        code:
          type: string
        details: {}
        error:
          type: string
    handlers.BusinessDevFeatures:
      type: object
      properties:
        bom_artifacts:
          description: 'BomArtifacts gates the conversational BOM Artifacts feature (portal

            sidebar section + rag-agent endpoints). Enabled per-business via the admin

            dev-features endpoint; consumed by the frontend''s useBusinessDevFeatures.'
          type: boolean
        bom_raw_import:
          description: 'BomRawImport gates the dynamic BOM import (import every column as-is into

            a first-class raw structure, no static mapping). Same flag the gateway

            import handler checks server-side.'
          type: boolean
        model_extraction:
          type: boolean
  securitySchemes:
    BearerAuth:
      description: 'Firebase JWT token. Format: "Bearer {token}"'
      type: apiKey
      name: Authorization
      in: header