Koala · Schema

KoalaAccountBatchRequest

Request body for the Koala Server-Side /accounts/batch endpoint. Sends account-level traits and events tied to a company domain or account_id.

Buyer IntentVisitor IdentificationDe-anonymizationEnrichmentGo-To-MarketSales IntelligenceB2B

Properties

Name Type Description
account_id string Koala internal account identifier.
domain string Company domain used to look up or create the account.
identifies array Account-level identify calls with trait data.
events array Account-level track events.
View JSON Schema on GitHub

JSON Schema

koala-io-account-batch-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/koala/main/json-schema/koala-account-batch-request-schema.json",
  "title": "KoalaAccountBatchRequest",
  "description": "Request body for the Koala Server-Side /accounts/batch endpoint. Sends account-level traits and events tied to a company domain or account_id.",
  "type": "object",
  "anyOf": [
    { "required": ["account_id"] },
    { "required": ["domain"] }
  ],
  "properties": {
    "account_id": {
      "type": "string",
      "description": "Koala internal account identifier.",
      "example": "acct_abc123"
    },
    "domain": {
      "type": "string",
      "description": "Company domain used to look up or create the account.",
      "example": "getkoala.com"
    },
    "identifies": {
      "type": "array",
      "description": "Account-level identify calls with trait data.",
      "items": { "$ref": "#/$defs/AccountIdentifyCall" }
    },
    "events": {
      "type": "array",
      "description": "Account-level track events.",
      "items": { "$ref": "#/$defs/TrackEvent" }
    }
  },
  "$defs": {
    "AccountIdentifyCall": {
      "type": "object",
      "required": ["type"],
      "properties": {
        "type": {
          "type": "string",
          "const": "identify"
        },
        "sent_at": {
          "type": "string",
          "format": "date-time"
        },
        "traits": {
          "type": "object",
          "additionalProperties": true,
          "properties": {
            "group_id": {
              "type": "string",
              "description": "Tenant disambiguator for multi-tenant accounts.",
              "example": "development-team"
            },
            "billing_plan": { "type": "string" },
            "vip": { "type": "boolean" },
            "headcount": { "type": "integer" }
          }
        }
      }
    },
    "TrackEvent": {
      "type": "object",
      "required": ["type", "event"],
      "properties": {
        "message_id": {
          "type": "string",
          "description": "Idempotency key."
        },
        "type": {
          "type": "string",
          "const": "track"
        },
        "event": {
          "type": "string",
          "example": "Workspace Created"
        },
        "properties": {
          "type": "object",
          "additionalProperties": true
        },
        "sent_at": {
          "type": "string",
          "format": "date-time"
        }
      }
    }
  }
}

Work with this as data

Every JSON Schema 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 schemas

4 MCP tools reach this
  • find_json_schemasBrowse and filter every JSON Schema in the catalog.
  • 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 JSON Schema
curl "https://apis.io/api/v1/json-schemas/koala-io-account-batch-request"
All schemas
curl "https://apis.io/api/v1/json-schemas?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.