Arkham Intelligence API

The Intelligence API from Arkham — 21 operation(s) for intelligence.

OpenAPI Specification

arkham-intelligence-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: Arkham Intel Analytics Intelligence API
  version: 1.1.0
tags:
- name: Intelligence
paths:
  /intelligence/address/batch:
    post:
      summary: Batch lookup address intelligence
      description: Returns intelligence for up to 1000 addresses in a single request. Send a POST body with an `addresses` array of blockchain addresses. Optionally filter results with the `chain` query parameter (a single network) or `chains` (multiple networks). If neither is provided, the best chain is auto-detected per address.
      operationId: GetBatchAddressIntelligence
      parameters:
      - name: chains
        in: query
        description: List of chains to filter by. If omitted, auto-detects the best chain.
        schema:
          $ref: '#/components/schemas/Chains'
      - name: chain
        in: query
        description: Single blockchain network to filter all addresses to. If omitted, auto-detects per address.
        schema:
          $ref: '#/components/schemas/Chain'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchAddressRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchAddressResponse'
              example:
                addresses:
                  '0x28C6c06298d514Db089934071355E5743bf21d60':
                    address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                    arkhamEntity:
                      crunchbase: https://www.crunchbase.com/organization/binance
                      id: binance
                      linkedin: https://www.linkedin.com/company/binance
                      name: Binance
                      note: ''
                      service: null
                      twitter: https://twitter.com/binance
                      type: cex
                      website: https://binance.com
                    arkhamLabel:
                      address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                      chainType: evm
                      name: Hot Wallet
                    chain: ethereum
                    contract: false
                    isUserAddress: false
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Intelligence
  /intelligence/address/batch/all:
    post:
      summary: Batch lookup address intelligence across all chains
      description: Returns intelligence for up to 1000 addresses across all supported chains. Send a JSON body with an "addresses" array of blockchain addresses.
      operationId: GetBatchAllAddressIntelligence
      parameters:
      - name: chains
        in: query
        description: List of chains to filter by. If omitted, auto-detects the best chain.
        schema:
          $ref: '#/components/schemas/Chains'
      - name: chain
        in: query
        description: Single blockchain network to filter all addresses to. If omitted, auto-detects per address.
        schema:
          $ref: '#/components/schemas/Chain'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchAddressRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchAllAddressResponse'
              example:
                addresses:
                  '0x28C6c06298d514Db089934071355E5743bf21d60':
                    ethereum:
                      address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                      arkhamEntity:
                        crunchbase: https://www.crunchbase.com/organization/binance
                        id: binance
                        linkedin: https://www.linkedin.com/company/binance
                        name: Binance
                        note: ''
                        service: null
                        twitter: https://twitter.com/binance
                        type: cex
                        website: https://binance.com
                      arkhamLabel:
                        address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                        chainType: evm
                        name: Hot Wallet
                      chain: ethereum
                      contract: false
                      isUserAddress: false
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Intelligence
  /intelligence/address/{address}:
    get:
      summary: Get intelligence about an address
      description: Returns intelligence data for the specified address, including entity associations, labels, and contract status.
      operationId: GetAddressIntelligence
      parameters:
      - name: chain
        in: query
        description: 'Blockchain network to query. Only one network is used: if multiple values are provided, only the first applies. If omitted, the best chain is auto-detected across all supported chains.'
        schema:
          $ref: '#/components/schemas/Chains'
      - name: address
        in: path
        description: The blockchain address to query.
        required: true
        schema:
          type: string
          description: The blockchain address to query.
          example: '0x28C6c06298d514Db089934071355E5743bf21d60'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Address'
              example:
                address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                arkhamEntity:
                  crunchbase: https://www.crunchbase.com/organization/binance
                  id: binance
                  linkedin: https://www.linkedin.com/company/binance
                  name: Binance
                  note: ''
                  service: null
                  twitter: https://twitter.com/binance
                  type: cex
                  website: https://binance.com
                arkhamLabel:
                  address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                  chainType: evm
                  name: Hot Wallet
                chain: ethereum
                contract: false
                isUserAddress: false
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Intelligence
  /intelligence/address/{address}/all:
    get:
      summary: Get all intelligence about an address across chains
      description: Returns multi-chain intelligence for the provided address, with data for each supported chain where the address format is valid.
      operationId: GetAllAddressIntelligence
      parameters:
      - name: address
        in: path
        description: The blockchain address to query across all compatible chains.
        required: true
        schema:
          type: string
          description: The blockchain address to query across all compatible chains.
          example: '0x28C6c06298d514Db089934071355E5743bf21d60'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  $ref: '#/components/schemas/Address'
                example:
                  ethereum:
                    address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                    arkhamEntity:
                      crunchbase: https://www.crunchbase.com/organization/binance
                      id: binance
                      linkedin: https://www.linkedin.com/company/binance
                      name: Binance
                      note: ''
                      service: null
                      twitter: https://twitter.com/binance
                      type: cex
                      website: https://binance.com
                    arkhamLabel:
                      address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                      chainType: evm
                      name: Hot Wallet
                    chain: ethereum
                    contract: false
                    isUserAddress: false
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Intelligence
  /intelligence/address_enriched/batch:
    post:
      summary: Batch lookup enriched address intelligence
      description: Returns enriched intelligence (with tags, clusters, entity predictions) for up to 1000 addresses in a single request. Send a JSON body with an "addresses" array of blockchain addresses.
      operationId: GetBatchAddressIntelligenceEnriched
      parameters:
      - name: chains
        in: query
        description: list of chains to filter by. If omitted, auto-detects the best chain.
        schema:
          $ref: '#/components/schemas/Chains'
      - name: includeTags
        in: query
        description: Whether to include address tags in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include address tags in the response. Defaults to 'true'.
          example: 'true'
      - name: includeClusters
        in: query
        description: Whether to include cluster IDs in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include cluster IDs in the response. Defaults to 'true'.
          example: 'true'
      - name: includeEntityPredictions
        in: query
        description: Whether to include entity predictions in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include entity predictions in the response. Defaults to 'true'.
          example: 'true'
      - name: chain
        in: query
        description: Single blockchain network to filter all addresses to. If omitted, auto-detects per address.
        schema:
          $ref: '#/components/schemas/Chain'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchAddressEnrichedRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchAddressEnrichedResponse'
              example:
                addresses:
                  '0x28C6c06298d514Db089934071355E5743bf21d60':
                    address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                    arkhamEntity:
                      crunchbase: https://www.crunchbase.com/organization/binance
                      id: binance
                      linkedin: https://www.linkedin.com/company/binance
                      name: Binance
                      note: ''
                      service: null
                      twitter: https://twitter.com/binance
                      type: cex
                      website: https://binance.com
                    arkhamLabel:
                      address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                      chainType: evm
                      name: Hot Wallet
                    chain: ethereum
                    contract: false
                    isUserAddress: false
                    populatedTags:
                    - chain: ethereum
                      disablePage: false
                      excludeEntities: false
                      id: proof-of-reserves
                      label: Binance Proof of Reserves
                      rank: 20
                      tagParams: Binance
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Intelligence
  /intelligence/address_enriched/batch/all:
    post:
      summary: Batch lookup enriched address intelligence across all chains
      description: Returns enriched intelligence (with tags, clusters, entity predictions) for up to 1000 addresses across all supported chains. Send a JSON body with an "addresses" array of blockchain addresses.
      operationId: GetBatchAllAddressIntelligenceEnriched
      parameters:
      - name: chains
        in: query
        description: list of chains to filter by. If omitted, queries all supported chains.
        schema:
          $ref: '#/components/schemas/Chains'
      - name: includeTags
        in: query
        description: Whether to include address tags in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include address tags in the response. Defaults to 'true'.
          example: 'true'
      - name: includeClusters
        in: query
        description: Whether to include cluster IDs in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include cluster IDs in the response. Defaults to 'true'.
          example: 'true'
      - name: includeEntityPredictions
        in: query
        description: Whether to include entity predictions in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include entity predictions in the response. Defaults to 'true'.
          example: 'true'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/BatchAllAddressEnrichedRequest'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BatchAllAddressEnrichedResponse'
              example:
                addresses:
                  '0x28C6c06298d514Db089934071355E5743bf21d60':
                    ethereum:
                      address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                      arkhamEntity:
                        crunchbase: https://www.crunchbase.com/organization/binance
                        id: binance
                        linkedin: https://www.linkedin.com/company/binance
                        name: Binance
                        note: ''
                        service: null
                        twitter: https://twitter.com/binance
                        type: cex
                        website: https://binance.com
                      arkhamLabel:
                        address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                        chainType: evm
                        name: Hot Wallet
                      chain: ethereum
                      contract: false
                      isUserAddress: false
                      populatedTags:
                      - chain: ethereum
                        disablePage: false
                        excludeEntities: false
                        id: proof-of-reserves
                        label: Binance Proof of Reserves
                        rank: 20
                        tagParams: Binance
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Intelligence
  /intelligence/address_enriched/{address}:
    get:
      summary: Get intelligence about an address with additional address information
      description: Similar to /intelligence/address/{address}, but includes additional address information (tags, cluster IDs, entity predictions). By default, includes tags, entity predictions, and cluster IDs. Use query parameters to exclude specific enrichments.
      operationId: GetAddressIntelligenceEnriched
      parameters:
      - name: chain
        in: query
        description: 'Blockchain network to query. Only one network is used: if multiple values are provided, only the first applies. If omitted, the best chain is auto-detected across all supported chains.'
        schema:
          $ref: '#/components/schemas/Chains'
      - name: includeTags
        in: query
        description: Whether to include address tags in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include address tags in the response. Defaults to 'true'.
          example: 'true'
      - name: includeClusters
        in: query
        description: Whether to include cluster IDs in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include cluster IDs in the response. Defaults to 'true'.
          example: 'true'
      - name: includeEntityPredictions
        in: query
        description: Whether to include entity predictions in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include entity predictions in the response. Defaults to 'true'.
          example: 'true'
      - name: address
        in: path
        description: The blockchain address to query.
        required: true
        schema:
          type: string
          description: The blockchain address to query.
          example: '0x28C6c06298d514Db089934071355E5743bf21d60'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AddressEnriched'
              example:
                address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                arkhamEntity:
                  crunchbase: https://www.crunchbase.com/organization/binance
                  id: binance
                  linkedin: https://www.linkedin.com/company/binance
                  name: Binance
                  note: ''
                  service: null
                  twitter: https://twitter.com/binance
                  type: cex
                  website: https://binance.com
                arkhamLabel:
                  address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                  chainType: evm
                  name: Hot Wallet
                chain: ethereum
                contract: false
                isUserAddress: false
                populatedTags:
                - chain: ethereum
                  disablePage: false
                  excludeEntities: false
                  id: proof-of-reserves
                  label: Binance Proof of Reserves
                  rank: 20
                  tagParams: Binance
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Intelligence
  /intelligence/address_enriched/{address}/all:
    get:
      summary: Get intelligence about an address on all chains with additional address information
      description: Similar to /intelligence/address_enriched/{address}, but aggregates data across every supported chain. By default, includes tags, entity predictions, and cluster IDs. Use query parameters to exclude specific enrichments.
      operationId: GetAllAddressIntelligenceEnriched
      parameters:
      - name: includeTags
        in: query
        description: Whether to include address tags in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include address tags in the response. Defaults to 'true'.
          example: 'true'
      - name: includeEntityPredictions
        in: query
        description: Whether to include entity predictions in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include entity predictions in the response. Defaults to 'true'.
          example: 'true'
      - name: includeClusters
        in: query
        description: Whether to include cluster IDs in the response. Defaults to 'true'.
        schema:
          type: string
          description: Whether to include cluster IDs in the response. Defaults to 'true'.
          example: 'true'
      - name: address
        in: path
        description: The blockchain address to query across all compatible chains.
        required: true
        schema:
          type: string
          description: The blockchain address to query across all compatible chains.
          example: '0x28C6c06298d514Db089934071355E5743bf21d60'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  $ref: '#/components/schemas/AddressEnriched'
                example:
                  ethereum:
                    address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                    arkhamEntity:
                      crunchbase: https://www.crunchbase.com/organization/binance
                      id: binance
                      linkedin: https://www.linkedin.com/company/binance
                      name: Binance
                      note: ''
                      service: null
                      twitter: https://twitter.com/binance
                      type: cex
                      website: https://binance.com
                    arkhamLabel:
                      address: '0x28C6c06298d514Db089934071355E5743bf21d60'
                      chainType: evm
                      name: Hot Wallet
                    chain: ethereum
                    contract: false
                    isUserAddress: false
                    populatedTags:
                    - chain: ethereum
                      disablePage: false
                      excludeEntities: false
                      id: proof-of-reserves
                      label: Binance Proof of Reserves
                      rank: 20
                      tagParams: Binance
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Intelligence
  /intelligence/address_tags/updates:
    get:
      summary: Get address-tag association updates
      description: Returns a feed of address-tag association changes (new tags applied to addresses, removed tags) with cursor-based pagination.
      operationId: GetAddressTagUpdates
      parameters:
      - name: since
        in: query
        description: Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'.
        schema:
          type: string
          description: Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'.
          nullable: true
          example: '2025-01-01T00:00:00Z'
      - name: from
        in: query
        description: Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.
        schema:
          type: string
          description: Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.
          nullable: true
          example: '2025-01-01T00:00:00Z'
      - name: to
        in: query
        description: End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.
        schema:
          type: string
          description: End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.
          nullable: true
          example: '2025-01-07T00:00:00Z'
      - name: status
        in: query
        description: Filter by change status. For address tags only 'new', 'deleted', and 'all' are valid (no 'updated').
        schema:
          $ref: '#/components/schemas/UpdateStatus'
      - name: chain
        in: query
        description: Blockchain networks to filter by.
        schema:
          type: array
          items:
            type: string
          description: Blockchain networks to filter by.
          example:
          - ethereum
          - bsc
      - name: address
        in: query
        description: Blockchain addresses to filter by. Max 100.
        schema:
          type: array
          items:
            type: string
          description: Blockchain addresses to filter by. Max 100.
          example:
          - '0x28C6c06298d514Db089934071355E5743bf21d60'
      - name: tagId
        in: query
        description: Tag IDs to filter by. Max 100.
        schema:
          type: array
          items:
            type: string
          description: Tag IDs to filter by. Max 100.
          example:
          - early-token-holder
          - contract-deployer
      - name: tagParams
        in: query
        description: Filter by tag parameters (JSON string matching tag-specific params).
        schema:
          type: string
          description: Filter by tag parameters (JSON string matching tag-specific params).
          example: Binance
      - name: entityId
        in: query
        description: Entity IDs to filter by. Max 100.
        schema:
          type: array
          items:
            type: string
          description: Entity IDs to filter by. Max 100.
          example:
          - binance
          - coinbase
      - name: category
        in: query
        description: Tag categories to filter by. Max 100.
        schema:
          type: array
          items:
            type: string
          description: Tag categories to filter by. Max 100.
          example:
          - DeFi
          - Social
      - name: orderBy
        in: query
        description: 'Sort order: ''time'' (asc) or ''rank'' (desc). Default ''time''.'
        schema:
          type: string
          description: 'Sort order: ''time'' (asc) or ''rank'' (desc). Default ''time''.'
          example: time
      - name: limit
        in: query
        description: Maximum results to return (1-1000, default 100).
        schema:
          type: integer
          description: Maximum results to return (1-1000, default 100).
          example: 100
      - name: pageToken
        in: query
        description: Cursor token for pagination (from previous response).
        schema:
          type: string
          description: Cursor token for pagination (from previous response).
          example: eyJkIjoiMjAyNS0wMS0wMVQwMDowMDowMFoiLCJxIjowfQ==
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                required:
                - latest_diff_ts
                - items
                - hasMore
                type: object
                properties:
                  hasMore:
                    type: boolean
                    description: Whether more results are available beyond this page.
                    example: true
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/AddressTagUpdate'
                    description: Array of update items.
                    nullable: true
                    example:
                    - address: '0x18e226459CCf0Eec276514a4fd3b226D8961e4d1'
                      category: Other
                      chain: ethereum
                      diff_seq: 1930533
                      diff_ts: '2026-02-03T06:49:00Z'
                      entity_id: binance
                      entity_name: Binance
                      entity_type: cex
                      label: Early CATCOIN Holder
                      rank: 540
                      status: new
                      tag_id: early-token-holder
                      tag_name: Early Token Holder
                      tag_params: '{"pricing_id":"catcoin-3","symbol":"CATCOIN"}'
                      template: Early %s Holder
                  latest_diff_ts:
                    type: string
                    description: Most recent change timestamp in this response. Use as 'since' parameter for incremental sync. Null if no items returned.
                    format: date-time
                    nullable: true
                    example: '2025-04-09T00:00:00Z'
                  pageToken:
                    type: string
                    description: Opaque cursor for fetching the next page. Empty when no more pages.
                    example: eyJkIjoiMjAyNS0wMi0wMlQwMDowMDowMFoiLCJxIjoyfQ==
                example:
                  hasMore: true
                  items:
                  - address: '0x18e226459CCf0Eec276514a4fd3b226D8961e4d1'
                    category: Other
                    chain: ethereum
                    diff_seq: 1930533
                    diff_ts: '2026-02-03T06:49:00Z'
                    entity_id: binance
                    entity_name: Binance
                    entity_type: cex
                    label: Early CATCOIN Holder
                    rank: 540
                    status: new
                    tag_id: early-token-holder
                    tag_name: Early Token Holder
                    tag_params: '{"pricing_id":"catcoin-3","symbol":"CATCOIN"}'
                    template: Early %s Holder
                  latest_diff_ts: '2025-04-09T00:00:00Z'
                  pageToken: eyJkIjoiMjAyNS0wMi0wMlQwMDowMDowMFoiLCJxIjoyfQ==
              example:
                hasMore: true
                items:
                - address: '0x000000000000000000000000000000000000800A'
                  category: Other
                  chain: arbitrum_one
                  diff_seq: 1
                  diff_ts: '2025-01-01T02:52:00Z'
                  rank: 140
                  status: new
                  tag_id: arbitrum-one-first-funder
                  tag_name: Arbitrum One First Funder
                  tag_params: '0x35e14525280193cb71e8204cABafCf10F7e5Dc25'
                  template: 'Arbitrum One First Funder: %s'
                - address: '0x000072ba5D51098b904A927ddE54C22aD480B5B5'
                  category: Other
                  chain: arbitrum_one
                  diff_seq: 13
                  diff_ts: '2025-01-01T02:52:00Z'
                  entity_id: 0xdyno
                  entity_name: '@0xDyno'
                  entity_type: individual
                  label: 494119.eth
                  rank: 540
                  status: deleted
                  tag_id: early-token-holder
                  tag_name: Early Token Holder
                  tag_params: GEM
                  template: Early %s Holder
                latest_diff_ts: '2025-01-01T02:52:00Z'
                pageToken: eyJkIjoiMjAyNS0wMS0wMVQwMjo1MjowMFoiLCJxIjoxMDB9
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
      tags:
      - Intelligence
  /intelligence/addresses/updates:
    get:
      summary: Get address intelligence updates
      description: Returns a feed of address label, entity, and tag changes with cursor-based pagination.
      operationId: GetAddressUpdates
      parameters:
      - name: since
        in: query
        description: Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'.
        schema:
          type: string
          description: Returns changes since this time. Required unless both 'from' and 'to' are provided; mutually exclusive with 'from'/'to'.
          nullable: true
          example: '2025-01-01T00:00:00Z'
      - name: from
        in: query
        description: Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.
        schema:
          type: string
          description: Start of time window (use with 'to', max 7-day window). Provide together with 'to' as an alternative to 'since'; mutually exclusive with 'since'.
          nullable: true
          example: '2025-01-01T00:00:00Z'
      - name: to
        in: query
        description: End of time window (use with 'from', max 7-day window). Provide together with 'from' as an alternative to 'since'; mutually exclusive with 'since'.
        schema:
          type: string
          description: End of time window (use with 'from', max 7-day window). Provide togeth

# --- truncated at 32 KB (229 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/arkham/refs/heads/main/openapi/arkham-intelligence-api-openapi.yml