Resourcly drive API
The drive API from Resourcly — 10 operation(s) for drive.
The drive API from Resourcly — 10 operation(s) for drive.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/resourcly-drive-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
description: API for document processing, item similarity search, and analytics.
title: Resourcly analytics Drive 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: drive
paths:
/v1/drive/browse:
get:
description: List objects and prefixes (folders) at a given path
tags:
- drive
summary: Browse the data store
parameters:
- description: Path prefix to browse
name: prefix
in: query
schema:
type: string
- description: Page number
name: page
in: query
schema:
type: integer
default: 1
- description: Page size
name: page_size
in: query
schema:
type: integer
default: 100
- description: Delimiter for folder grouping
name: delimiter
in: query
schema:
type: string
default: '"/"'
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveBrowseResponse'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
/v1/drive/download:
post:
description: Generate signed download URL(s) for one or more objects
tags:
- drive
summary: Request download
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveDownloadResponse'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveDownloadRequest'
description: Download parameters
required: true
/v1/drive/download/zip:
post:
description: Stream multiple objects as a single ZIP archive
tags:
- drive
summary: Bulk download as ZIP
responses:
'200':
description: OK
content:
application/zip:
schema:
type: string
format: binary
'400':
description: Bad Request
content:
application/zip:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
'401':
description: Unauthorized
content:
application/zip:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveDownloadRequest'
description: Download parameters
required: true
/v1/drive/objects/{id}:
get:
description: Get metadata for a single object
tags:
- drive
summary: Get object details
parameters:
- description: Object ID
name: id
in: path
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveObject'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
/v1/drive/objects/{id}/restore:
post:
description: Initiate restoration of an object from Coldline/Archive storage
tags:
- drive
summary: Restore object from cold storage
parameters:
- description: Object ID
name: id
in: path
required: true
schema:
type: string
responses:
'202':
description: Accepted
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
/v1/drive/search:
post:
description: Full-text search across all indexed objects in the data store
tags:
- drive
summary: Search the data store
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveSearchResponse'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveSearchRequest'
description: Search parameters
required: true
/v1/drive/shared/{id}:
get:
description: Access content via a share link (public, no auth required)
tags:
- drive
summary: Access shared content
parameters:
- description: Share link ID
name: id
in: path
required: true
schema:
type: string
- description: Password for protected links
name: password
in: query
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveBrowseResponse'
'401':
description: Password required
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
/v1/drive/shares:
get:
description: List all share links created by the authenticated user's business
tags:
- drive
summary: List share links
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
$ref: '#/components/schemas/models.DriveShareLink'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
post:
description: Create a shareable link for files, folders, or search results
tags:
- drive
summary: Create a share link
responses:
'201':
description: Created
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveShareLink'
'400':
description: Bad Request
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveCreateShareRequest'
description: Share parameters
required: true
/v1/drive/shares/{id}:
delete:
description: Revoke and delete a share link
tags:
- drive
summary: Delete a share link
parameters:
- description: Share link ID
name: id
in: path
required: true
schema:
type: string
responses:
'204':
description: No Content
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
'404':
description: Not Found
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
/v1/drive/stats:
get:
description: Get aggregate statistics about the data store
tags:
- drive
summary: Get storage statistics
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/models.DriveStorageStats'
'401':
description: Unauthorized
content:
application/json:
schema:
$ref: '#/components/schemas/models.ErrorResponse'
components:
schemas:
models.DriveDownloadItem:
type: object
properties:
download_url:
type: string
name:
type: string
object_id:
type: string
size:
type: integer
models.DriveDownloadResponse:
type: object
properties:
download_url:
type: string
download_urls:
type: array
items:
$ref: '#/components/schemas/models.DriveDownloadItem'
expires_at:
type: string
total_size:
type: integer
models.DriveCreateShareRequest:
type: object
properties:
access_level:
description: '"view" or "download"'
type: string
expires_in_hours:
type: integer
label:
type: string
password:
type: string
scope:
$ref: '#/components/schemas/models.DriveShareScope'
models.DriveShareLink:
type: object
properties:
access_level:
type: string
created_at:
type: string
created_by:
type: string
expires_at:
type: string
id:
type: string
label:
type: string
password_protected:
type: boolean
scope:
$ref: '#/components/schemas/models.DriveShareScope'
url:
type: string
models.DriveStorageBucket:
type: object
properties:
count:
type: integer
size:
type: integer
models.DriveObject:
type: object
properties:
bucket:
type: string
business_id:
type: string
content_type:
type: string
created_at:
type: string
id:
type: string
last_accessed_at:
type: string
metadata:
type: object
additionalProperties:
type: string
name:
type: string
path:
type: string
size:
type: integer
storage_class:
type: string
tags:
type: array
items:
type: string
updated_at:
type: string
models.DriveDownloadRequest:
type: object
properties:
object_ids:
type: array
items:
type: string
models.ErrorResponse:
type: object
properties:
code:
type: string
details: {}
error:
type: string
models.DriveShareScope:
type: object
properties:
object_ids:
type: array
items:
type: string
prefix:
type: string
query:
$ref: '#/components/schemas/models.DriveSearchRequest'
type:
description: '"prefix", "files", or "search"'
type: string
models.DriveSearchRequest:
type: object
properties:
content_type:
type: string
max_size:
type: integer
min_size:
type: integer
page:
type: integer
page_size:
type: integer
prefix:
type: string
query:
type: string
sort_by:
type: string
sort_order:
type: string
storage_class:
type: string
models.DriveStorageStats:
type: object
properties:
by_content_type:
type: object
additionalProperties:
$ref: '#/components/schemas/models.DriveStorageBucket'
by_storage_class:
type: object
additionalProperties:
$ref: '#/components/schemas/models.DriveStorageBucket'
total_objects:
type: integer
total_size:
type: integer
models.DriveBrowseResponse:
type: object
properties:
objects:
type: array
items:
$ref: '#/components/schemas/models.DriveObject'
page:
type: integer
page_size:
type: integer
prefixes:
type: array
items:
type: string
total:
type: integer
models.DriveSearchResponse:
type: object
properties:
highlights:
type: object
additionalProperties:
type: array
items:
type: string
objects:
type: array
items:
$ref: '#/components/schemas/models.DriveObject'
page:
type: integer
page_size:
type: integer
total:
type: integer
securitySchemes:
BearerAuth:
description: 'Firebase JWT token. Format: "Bearer {token}"'
type: apiKey
name: Authorization
in: header