Lithium AccountSet API

The AccountSet API from Lithium — 1 operation(s) for accountset.

Operations 1

GET /{environment}/v1/company/{companyId}/initiative/{initiativeId}/accountset Lists all accounts sets and corresponding accounts available to the user. #

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-accountset-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-accountset-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: agent-states-api-v2 Account Set API
  version: '1.1'
servers:
- url: https://{instance}.response.lithium.com/api/v2/agentstate
  variables:
    instance:
      default: instance
security:
- {}
tags:
- name: AccountSet
paths:
  /{environment}/v1/company/{companyId}/initiative/{initiativeId}/accountset:
    get:
      tags:
      - AccountSet
      operationId: accountSet
      parameters:
      - name: environment
        in: path
        required: true
        schema:
          type: string
      - name: companyId
        in: path
        required: true
        schema:
          type: string
      - name: initiativeId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/AccountSet'
            text/plain:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/AccountSet'
      description: 'List all account sets and accounts available.


        Note: the following criteria must be met for an account set to be listed:

        1. Your user must be a member of the Account Set.

        2. There must be at least one Account registered in the Account Set.'
      summary: Lists all accounts sets and corresponding accounts available to the user.
components:
  schemas:
    Account:
      type: object
      description: A Conversations social media Account
      properties:
        sfEntityType:
          type: string
        id:
          type: integer
        service:
          type: string
        name:
          type: string
        accountType:
          type: string
        serviceId:
          type: string
    AccountSet:
      type: object
      description: A Conversations AccountSet
      properties:
        sfEntityType:
          type: string
        id:
          type: integer
        name:
          type: string
        description:
          type: string
        thumbnail:
          type: string
        accounts:
          type: array
          items:
            $ref: '#/components/schemas/Account'
x-readme:
  headers: []
  explorer-enabled: false
  proxy-enabled: false
x-readme-fauxas: true