Golioth LightDB API

The LightDB API from Golioth — 2 operation(s) for lightdb.

Operations 9

DELETE /v1/projects/{projectId}/devices/{deviceId}/data/{path} #
GET /v1/projects/{projectId}/devices/{deviceId}/data/{path} #
PATCH /v1/projects/{projectId}/devices/{deviceId}/data/{path} #
POST /v1/projects/{projectId}/devices/{deviceId}/data/{path} #
PUT /v1/projects/{projectId}/devices/{deviceId}/data/{path} #
DELETE /v1/projects/{projectId}/devicesByTag/{tag}/data/{path} #
PATCH /v1/projects/{projectId}/devicesByTag/{tag}/data/{path} #
POST /v1/projects/{projectId}/devicesByTag/{tag}/data/{path} #
PUT /v1/projects/{projectId}/devicesByTag/{tag}/data/{path} #

Documentation

Specifications

Schemas & Data

Other Resources

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/golioth-lightdb-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

golioth-lightdb-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Golioth Management Access Light DB API
  version: '1.0'
  description: 'Golioth IoT Device Management REST API. Authenticate with project-scoped API keys passed in the x-api-key header. Upstream OpenAPI: https://api.golioth.io/openapi.json'
servers:
- url: https://api.golioth.io
security:
- API Key: []
  Bearer: []
tags:
- name: LightDB
paths:
  /v1/projects/{projectId}/devices/{deviceId}/data/{path}:
    delete:
      operationId: DeviceState_Delete
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: deviceId
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          pattern: .+
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothDeleteDeviceStateResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - LightDB
    get:
      operationId: DeviceState_Get
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: deviceId
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          pattern: .+
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothGetDeviceStateResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - LightDB
    patch:
      operationId: DeviceState_Update2
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: deviceId
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          pattern: .+
          type: string
      requestBody:
        content:
          application/json:
            schema: {}
        required: true
        x-originalParamName: value
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothUpdateDeviceStateResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - LightDB
    post:
      operationId: DeviceState_Update3
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: deviceId
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          pattern: .+
          type: string
      requestBody:
        content:
          application/json:
            schema: {}
        required: true
        x-originalParamName: value
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothUpdateDeviceStateResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - LightDB
    put:
      operationId: DeviceState_Update
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: deviceId
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          pattern: .+
          type: string
      requestBody:
        content:
          application/json:
            schema: {}
        required: true
        x-originalParamName: value
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothUpdateDeviceStateResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - LightDB
  /v1/projects/{projectId}/devicesByTag/{tag}/data/{path}:
    delete:
      operationId: DeviceState_DeleteByTag
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: tag
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          pattern: .+
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothDeleteDeviceStateResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - LightDB
    patch:
      operationId: DeviceState_UpdateByTag2
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: tag
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          pattern: .+
          type: string
      requestBody:
        content:
          application/json:
            schema: {}
        required: true
        x-originalParamName: value
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothUpdateDeviceStateResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - LightDB
    post:
      operationId: DeviceState_UpdateByTag3
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: tag
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          pattern: .+
          type: string
      requestBody:
        content:
          application/json:
            schema: {}
        required: true
        x-originalParamName: value
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothUpdateDeviceStateResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - LightDB
    put:
      operationId: DeviceState_UpdateByTag
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: tag
        required: true
        schema:
          type: string
      - in: path
        name: path
        required: true
        schema:
          pattern: .+
          type: string
      requestBody:
        content:
          application/json:
            schema: {}
        required: true
        x-originalParamName: value
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothUpdateDeviceStateResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - LightDB
components:
  schemas:
    rpcStatus:
      properties:
        code:
          format: int32
          type: integer
        details:
          items:
            $ref: '#/components/schemas/protobufAny'
          type: array
        message:
          type: string
      type: object
    goliothUpdateDeviceStateResponse:
      properties:
        data: {}
      type: object
    protobufAny:
      additionalProperties: {}
      properties:
        '@type':
          type: string
      type: object
    goliothDeleteDeviceStateResponse:
      type: object
    goliothGetDeviceStateResponse:
      properties:
        data: {}
      type: object
  securitySchemes:
    API_Key:
      in: header
      name: x-api-key
      type: apiKey
    Bearer:
      in: header
      name: Authorization
      type: apiKey
externalDocs:
  description: golioth API
  url: https://docs.golioth.io