Lithium Agent States Api V2 API

The Agent States Api V2 API from Lithium — 1 operation(s) for agent states api v2.

Operations 1

GET / Retrieve Defined Agent States #

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/lithium-agent-states-api-v2-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

lithium-agent-states-api-v2-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: agent-states-api-v2 AccountSet Agent States Api V2 API
  version: '1.1'
servers:
- url: https://{instance}.response.lithium.com/api/v2/agentstate
  variables:
    instance:
      default: instance
security:
- {}
tags:
- name: Agent States Api V2
paths:
  /:
    get:
      summary: Retrieve Defined Agent States
      description: Retrieves a list of defined agent states for the company.
      operationId: retrieve-defined-agent-states
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"status\": \"success\",\n    \"data\": [\n        {\n            \"name\": \"Offline\",\n            \"id\": \"f846cf43-5c3e-4c2f-8949-example\",\n            \"deleted\": false,\n            \"allowActions\": false,\n            \"visibleForAllTeams\": true,\n            \"keepAssignedConversations\": true,\n            \"type\": \"OFFLINE\",\n            \"lastUpdatedTimeInMillis\": 1570559212865\n        },\n        {\n            \"name\": \"Lunch\",\n            \"id\": \"37c03720-1fdf-4eb4-b46f-example\",\n            \"deleted\": false,\n            \"allowActions\": false,\n            \"visibleForAllTeams\": true,\n            \"keepAssignedConversations\": true,\n            \"type\": \"CUSTOM\",\n            \"lastUpdatedTimeInMillis\": 1588347349760\n        },\n        {\n            \"name\": \"Available\",\n            \"id\": \"c26df5d0-7e59-4d88-b563-example\",\n            \"deleted\": false,\n            \"allowActions\": true,\n            \"visibleForAllTeams\": true,\n            \"keepAssignedConversations\": true,\n            \"type\": \"AVAILABLE\",\n            \"lastUpdatedTimeInMillis\": 1568222746855\n        }\n    ]\n}"
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        name:
                          type: string
                          example: Offline
                        id:
                          type: string
                          example: f846cf43-5c3e-4c2f-8949-example
                        deleted:
                          type: boolean
                          example: false
                          default: true
                        allowActions:
                          type: boolean
                          example: false
                          default: true
                        visibleForAllTeams:
                          type: boolean
                          example: true
                          default: true
                        keepAssignedConversations:
                          type: boolean
                          example: true
                          default: true
                        type:
                          type: string
                          example: OFFLINE
                        lastUpdatedTimeInMillis:
                          type: integer
                          example: 1570559212865
                          default: 0
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
      security: []
      x-readme:
        code-samples:
        - language: curl
          code: curl -L -u username:password 'https://{care-instance}/api/v2/agentstate'
        samples-languages:
        - curl
      tags:
      - Agent States Api V2
x-readme:
  headers: []
  explorer-enabled: false
  proxy-enabled: false
x-readme-fauxas: true