Quadrillion modal-filewatcher API
The modal-filewatcher API from Quadrillion — 2 operation(s) for modal-filewatcher.
The modal-filewatcher API from Quadrillion — 2 operation(s) for modal-filewatcher.
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/quadrillion-modal-filewatcher-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:
title: Quadrillion Cloud account Modal Filewatcher API
description: Public cloud API service for cloud-safe backend endpoints
version: 0.1.0
servers:
- url: https://api.quadrillion.io
description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: modal-filewatcher
paths:
/internal/fs-events:
post:
tags:
- modal-filewatcher
summary: Ingest Fs Events
description: Ingest filesystem events from the proxy and emit to Socket.IO.
operationId: ingest_fs_events_internal_fs_events_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FileSystemEventsRequest'
required: true
responses:
'204':
description: Successful Response
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/internal/fs-stale:
post:
tags:
- modal-filewatcher
summary: Emit Fs Stale
description: Emit ``fs_stale`` Socket.IO event on proxy reconnection.
operationId: emit_fs_stale_internal_fs_stale_post
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/FSStalePayload'
required: true
responses:
'204':
description: Successful Response
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
components:
schemas:
FileSystemEventsRequest:
properties:
sandbox_id:
type: string
title: Sandbox Id
sandbox_alias:
anyOf:
- type: string
- type: 'null'
title: Sandbox Alias
workspace_id:
type: string
title: Workspace Id
api_version:
type: string
title: Api Version
default: v1
stale:
type: boolean
title: Stale
default: false
events:
items:
$ref: '#/components/schemas/RawFileEvent'
type: array
title: Events
additionalProperties: false
type: object
required:
- sandbox_id
- workspace_id
- events
title: FileSystemEventsRequest
description: Batch of filesystem events from the proxy to FastAPI.
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
RawFileEvent:
properties:
path:
type: string
title: Path
old_path:
anyOf:
- type: string
- type: 'null'
title: Old Path
event_type:
type: string
enum:
- CREATED
- MODIFIED
- DELETED
- MOVED
title: Event Type
entity_type:
type: string
enum:
- FILE
- FOLDER
title: Entity Type
default: FILE
timestamp_ns:
type: integer
minimum: 0.0
title: Timestamp Ns
additionalProperties: false
type: object
required:
- path
- event_type
- timestamp_ns
title: RawFileEvent
description: A single filesystem event forwarded by the proxy.
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
type: array
title: Location
msg:
type: string
title: Message
type:
type: string
title: Error Type
type: object
required:
- loc
- msg
- type
title: ValidationError
FSStalePayload:
properties:
reason:
type: string
title: Reason
sandbox_id:
type: string
title: Sandbox Id
sandbox_alias:
anyOf:
- type: string
- type: 'null'
title: Sandbox Alias
workspace_id:
type: string
title: Workspace Id
additionalProperties: false
type: object
required:
- reason
- sandbox_id
- workspace_id
title: FSStalePayload
description: Payload emitted on the ``fs_stale`` Socket.IO event.