Luminance Annotation Sources API
The Annotation Sources API from Luminance — 2 operation(s) for annotation sources.
The Annotation Sources API from Luminance — 2 operation(s) for annotation sources.
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/luminance-annotation-sources-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: Luminance Annotation Sources API
version: '1.5'
description: 'Operations tagged Annotation Sources across 2 of this provider''s published API definitions: luminance-annotation-sources-api-openapi.yml, luminance-public-api-v2-openapi-original.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{moniker}.app.luminance.com
description: Your Luminance instance
variables:
moniker:
default: your-instance
description: Instance moniker (e.g. acme)
security:
- bearerAuth: []
tags:
- name: Annotation Sources
paths:
/api2/annotation_sources:
get:
tags:
- Annotation Sources
summary: List annotation sources
parameters:
- in: query
name: id
schema:
type: integer
- in: query
name: annotation_type_id
schema:
type: integer
- in: query
name: room_id
schema:
type: integer
- in: query
name: workflow_id
schema:
type: integer
- in: query
name: annotation_source_relation_id
schema:
type: integer
- in: query
name: state
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
type: object
example:
- id: 1
created_at: '2024-01-15T12:00:00.000Z'
created_by: 1
annotation_type_id: 1
room_id: 1
workflow_id: 1
annotation_source_relation_id: 1
content: Sample text
state: active
post:
tags:
- Annotation Sources
summary: Create annotation source
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
annotation_type_id:
type: integer
room_id:
type: integer
workflow_id:
type: integer
annotation_source_relation_id:
type: integer
content:
type: object
example:
annotation_type_id: 97
room_id: 1
workflow_id: null
responses:
'201':
description: Created
content:
application/json:
schema:
type: object
example:
id: 1
created_at: '2024-01-15T12:00:00.000Z'
created_by: 1
annotation_type_id: 1
room_id: 1
workflow_id: 1
annotation_source_relation_id: 1
content: {}
state: active
patch:
tags:
- Annotation Sources
summary: Update annotation sources by filter
parameters:
- in: query
name: id
schema:
type: integer
- in: query
name: annotation_type_id
schema:
type: integer
- in: query
name: room_id
schema:
type: integer
- in: query
name: workflow_id
schema:
type: integer
- in: query
name: annotation_source_relation_id
schema:
type: integer
- in: query
name: state
schema:
type: string
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
annotation_type_id:
type: integer
room_id:
type: integer
workflow_id:
type: integer
annotation_source_relation_id:
type: integer
content:
type: object
state:
type: string
example:
state: active
responses:
'200':
description: OK
content:
application/json:
schema:
type: array
items:
type: object
example:
- id: 1
created_at: '2024-01-15T12:00:00.000Z'
created_by: 1
annotation_type_id: 1
room_id: 1
workflow_id: 1
annotation_source_relation_id: 1
content: Sample text
state: active
servers:
- url: https://{moniker}.app.luminance.com
description: Your Luminance instance
variables:
moniker:
default: your-instance
description: Instance moniker (e.g. acme)
/api2/annotation_sources/{id}:
get:
tags:
- Annotation Sources
summary: Get annotation source
parameters:
- in: path
name: id
required: true
schema:
type: integer
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
example:
id: 1
created_at: '2024-01-15T12:00:00.000Z'
created_by: 1
annotation_type_id: 1
room_id: 1
workflow_id: 1
annotation_source_relation_id: 1
content: Sample text
state: active
'404':
description: Not found
patch:
tags:
- Annotation Sources
summary: Update annotation source
parameters:
- in: path
name: id
required: true
schema:
type: integer
requestBody:
required: true
content:
application/json:
schema:
type: object
properties:
annotation_type_id:
type: integer
room_id:
type: integer
workflow_id:
type: integer
annotation_source_relation_id:
type: integer
content:
type: object
state:
type: string
example:
state: active
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
example:
id: 1
created_at: '2024-01-15T12:00:00.000Z'
created_by: 1
annotation_type_id: 1
room_id: 1
workflow_id: 1
annotation_source_relation_id: 1
content: Sample text
state: active
servers:
- url: https://{moniker}.app.luminance.com
description: Your Luminance instance
variables:
moniker:
default: your-instance
description: Instance moniker (e.g. acme)
components:
securitySchemes:
bearerAuth:
type: http
scheme: bearer
bearerFormat: JWT
description: 'Access token from the OAuth2 client credentials flow. See the Authentication section above for how to obtain a token (curl to your instance token endpoint); then paste the access_token here.
'
x-refined-from:
- luminance-annotation-sources-api-openapi.yml
- luminance-public-api-v2-openapi-original.yml