Anduril Industries Entities API

Publish, query, override, and stream entities in the Lattice data fabric.

Operations 6

POST /entities Publish an entity
GET /entities/{entity_id} Get an entity by ID
PATCH /entities/{entity_id}/override Override fields on an entity
DELETE /entities/{entity_id}/override/{field_path} Clear an override
POST /entities/events:longPoll Long-poll entity events
GET /entities:stream Stream entities (SSE)

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/anduril-entities-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

anduril-entities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Anduril Lattice REST Entities API
  version: v1
  description: 'REST/JSON surface of the Anduril Lattice SDK. Lattice exposes a common operating-picture data fabric for defense partners. The API is organized around three resource families: Entities (anything of operational significance: assets, tracks, geos, sensors), Tasks (sequential commands issued to connected agents with lifecycle and acknowledgements), and Objects (distributed binary payloads such as imagery and telemetry, up to 1 GiB). Authentication uses OAuth 2.0 client credentials to mint short-lived bearer tokens, or direct partner-issued bearer tokens. Production environments are partner-gated and subject to U.S. export controls (ITAR/EAR). Endpoints were reconstructed from the public Lattice SDK reference; gRPC/Protobuf transports are also available but are not described here.'
  contact:
    name: Anduril Developer Portal
    url: https://developer.anduril.com/
servers:
- url: https://api.{environment}.anduril.com
  description: Partner-specific Lattice environment
  variables:
    environment:
      default: developer
      description: Lattice environment subdomain provisioned for the partner
security:
- bearerAuth: []
- oauth2ClientCredentials: []
tags:
- name: Entities
  description: Publish, query, override, and stream entities in the Lattice data fabric.
paths:
  /entities:
    post:
      tags:
      - Entities
      summary: Publish an entity
      description: Publish (create or update) an entity for ingest into the Lattice data fabric. Upsert is keyed by entity ID and provenance timestamp.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Entity'
      responses:
        '200':
          description: Entity accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Entity'
  /entities/{entity_id}:
    get:
      tags:
      - Entities
      summary: Get an entity by ID
      parameters:
      - $ref: '#/components/parameters/EntityId'
      responses:
        '200':
          description: Entity found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Entity'
        '404':
          description: Entity not found
  /entities/{entity_id}/override:
    patch:
      tags:
      - Entities
      summary: Override fields on an entity
      description: Override specific overridable fields on an entity using a field path.
      parameters:
      - $ref: '#/components/parameters/EntityId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                field_path:
                  type: string
                  description: Dotted path to the field being overridden.
                value:
                  description: Override value to apply at field_path.
      responses:
        '200':
          description: Override applied
  /entities/{entity_id}/override/{field_path}:
    delete:
      tags:
      - Entities
      summary: Clear an override
      description: Clear an override value previously set on the specified field path.
      parameters:
      - $ref: '#/components/parameters/EntityId'
      - name: field_path
        in: path
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Override cleared
  /entities/events:longPoll:
    post:
      tags:
      - Entities
      summary: Long-poll entity events
      description: Long-poll connection returning pre-existing and new entity events with session tokens for resumption.
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                session_token:
                  type: string
                filter:
                  type: object
      responses:
        '200':
          description: Batch of entity events
  /entities:stream:
    get:
      tags:
      - Entities
      summary: Stream entities (SSE)
      description: Server-Sent Events stream of real-time entity data with filtering options.
      responses:
        '200':
          description: SSE stream of entity events
          content:
            text/event-stream:
              schema:
                type: string
components:
  schemas:
    Entity:
      type: object
      description: An operationally significant entity (asset, track, geo, sensor) in the Lattice data fabric.
      properties:
        entity_id:
          type: string
        provenance:
          type: object
          properties:
            source_update_time:
              type: string
              format: date-time
            integration_name:
              type: string
            data_type:
              type: string
        aliases:
          type: object
        location:
          type: object
        is_live:
          type: boolean
        expiry_time:
          type: string
          format: date-time
  parameters:
    EntityId:
      name: entity_id
      in: path
      required: true
      description: Unique identifier of the entity.
      schema:
        type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: Bearer token issued via /oauth/token or partner-issued bearer.
    oauth2ClientCredentials:
      type: oauth2
      description: OAuth 2.0 client credentials flow for service-to-service access.
      flows:
        clientCredentials:
          tokenUrl: https://api.developer.anduril.com/oauth/token
          scopes: {}