> ## Documentation Index
> Fetch the complete documentation index at: https://docs.interchange.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get buyer readiness

> Get platform-level activation criteria and per-destination buying readiness for the authenticated buyer account.



## OpenAPI

````yaml /v2/buyer-api-v2.yaml get /readiness
openapi: 3.0.0
info:
  title: Scope3 Buyer API
  version: 2.0.0
  description: |-
    REST API for advertisers to manage advertisers, campaigns, and reporting.

    ## Authentication

    All endpoints require a Bearer token in the Authorization header:
    ```
    Authorization: Bearer your-api-key
    ```

    ## Base URL

    `https://api.interchange.io/api/v2/buyer`

    ## For AI Agents

    AI agents can use the MCP endpoint at `/mcp/v2/buyer` with three tools:
    - `initialize`: Start an MCP session
    - `api_call`: Make REST API calls
    - `ask_about_capability`: Learn about API features
servers:
  - url: https://api.interchange.io/api/v2/buyer
    description: Production server
security: []
tags:
  - name: Account
    description: Account management, service tokens, and preferences
  - name: Asks
    description: >-
      What you are waiting on Scope3 for — support, product, and supply asks in
      one list
  - name: Advertisers
    description: Manage advertisers
  - name: Product Discovery
    description: Discover and select products
  - name: Campaigns
    description: Manage advertising campaigns
  - name: Creatives
    description: Build, manage, and sync campaign creatives via AdCP Creative Protocol
  - name: Reporting
    description: Access performance metrics
  - name: Event Sources
    description: >-
      Manage event source configurations and log conversion/marketing events for
      attribution
  - name: Property Lists
    description: Validate property lists against AAO registry
  - name: Sales Agents
    description: View and connect sales agents
  - name: Measurement
    description: Measurement sources, records, context, and freshness
  - name: Syndication
    description: Syndicate resources to ADCP agents
  - name: Tasks
    description: Track async operation status
  - name: Buyer Billing
    description: >-
      Consolidated invoicing for buyers — invoices and pending invoice items
      issued by Scope3 across the buyer customer.
  - name: MCP
    description: Model Context Protocol endpoints for AI agents
paths:
  /readiness:
    get:
      tags:
        - Account
      summary: Get buyer readiness
      description: >-
        Get platform-level activation criteria and per-destination buying
        readiness for the authenticated buyer account.
      operationId: getBuyerReadiness
      parameters:
        - in: query
          name: limit
          schema:
            description: Maximum number of destination rows to return.
            example: 50
            default: 50
            type: integer
            minimum: 1
            maximum: 100
          description: Maximum number of destination rows to return.
        - in: query
          name: offset
          schema:
            description: Zero-based destination offset.
            example: 0
            default: 0
            type: integer
            minimum: 0
            maximum: 9007199254740991
          description: Zero-based destination offset.
      responses:
        '200':
          description: Get buyer readiness
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BuyerReadiness'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    BuyerReadiness:
      description: >-
        Canonical buyer setup projection. Platform readiness is established once
        for the buyer; destination rows add only seller availability, connection
        or mapping, and route-specific commercial requirements.
      type: object
      properties:
        version:
          type: number
          enum:
            - 1
        customer:
          type: object
          properties:
            id:
              type: integer
              maximum: 9007199254740991
              minimum: 1
            company:
              type: string
          required:
            - id
            - company
          additionalProperties: false
        status:
          type: string
          enum:
            - setup
            - ready
            - blocked
        platformReady:
          type: boolean
        canBuyAnywhere:
          type: boolean
        identity:
          type: object
          properties:
            operatorDomain:
              nullable: true
              type: string
            operatorDomainSource:
              type: string
              enum:
                - user_confirmed
                - legacy_customer_domain
                - none
            status:
              type: string
              enum:
                - missing
                - unverified
                - verified
            organization:
              type: object
              properties:
                domain:
                  nullable: true
                  type: string
                relationship:
                  type: string
                  enum:
                    - same_organization
                    - portfolio_brand
                    - external_operator
                    - unresolved
                verificationSource:
                  type: string
                  enum:
                    - member_or_admin
                    - organization_domain
                    - aao_house
                    - none
              required:
                - domain
                - relationship
                - verificationSource
              additionalProperties: false
            aao:
              type: object
              properties:
                status:
                  type: string
                  enum:
                    - matched
                    - not_found
                    - unavailable
                    - not_checked
                canonicalDomain:
                  nullable: true
                  type: string
                name:
                  nullable: true
                  type: string
                source:
                  nullable: true
                  type: string
              required:
                - status
                - canonicalDomain
                - name
                - source
              additionalProperties: false
          required:
            - operatorDomain
            - operatorDomainSource
            - status
            - organization
            - aao
          additionalProperties: false
        commercial:
          type: object
          properties:
            tosAccepted:
              type: boolean
            suspended:
              type: boolean
            interchangeClearingReady:
              type: boolean
            missing:
              type: array
              items:
                type: string
                enum:
                  - TOS
                  - STANDARD_RATE_CARD
                  - PAYMENT_AUTHORITY
          required:
            - tosAccepted
            - suspended
            - interchangeClearingReady
            - missing
          additionalProperties: false
        checks:
          type: array
          items:
            $ref: '#/components/schemas/BuyerReadinessCheck'
        destinations:
          type: object
          properties:
            total:
              description: Total destinations across every page.
              type: integer
              minimum: 0
              maximum: 9007199254740991
            ready:
              description: Ready destinations across every page.
              type: integer
              minimum: 0
              maximum: 9007199254740991
            needsConnection:
              description: Destinations needing connection work across every page.
              type: integer
              minimum: 0
              maximum: 9007199254740991
            blocked:
              description: Blocked destinations across every page.
              type: integer
              minimum: 0
              maximum: 9007199254740991
            limit:
              type: integer
              maximum: 9007199254740991
              minimum: 1
            offset:
              type: integer
              minimum: 0
              maximum: 9007199254740991
            hasMore:
              type: boolean
            nextOffset:
              nullable: true
              type: integer
              minimum: 0
              maximum: 9007199254740991
            truncated:
              description: >-
                True when this response contains fewer destination rows than the
                global total. Follow nextOffset while hasMore is true.
              type: boolean
            items:
              description: Destination readiness rows for the requested page.
              type: array
              items:
                $ref: '#/components/schemas/BuyerDestinationReadiness'
          required:
            - total
            - ready
            - needsConnection
            - blocked
            - limit
            - offset
            - hasMore
            - nextOffset
            - truncated
            - items
          additionalProperties: false
      required:
        - version
        - customer
        - status
        - platformReady
        - canBuyAnywhere
        - identity
        - commercial
        - checks
        - destinations
      additionalProperties: false
    ErrorResponse:
      description: Standard error response
      type: object
      properties:
        data:
          type: string
          nullable: true
          enum:
            - null
        error:
          $ref: '#/components/schemas/ApiError'
      required:
        - data
        - error
      additionalProperties: false
    BuyerReadinessCheck:
      type: object
      properties:
        id:
          type: string
          enum:
            - operator_identity
            - terms
            - account_standing
        name:
          type: string
        description:
          type: string
        status:
          type: string
          enum:
            - complete
            - missing
            - blocked
        isBlocker:
          type: boolean
        action:
          nullable: true
          allOf:
            - $ref: '#/components/schemas/BuyerReadinessAction'
      required:
        - id
        - name
        - description
        - status
        - isBlocker
        - action
      additionalProperties: false
    BuyerDestinationReadiness:
      description: >-
        Buyer-specific readiness for one seller or buying platform. Seller
        availability, connection wiring, and commercial routing remain separate
        inputs.
      type: object
      properties:
        storefrontId:
          type: string
        platformId:
          type: string
        name:
          type: string
        kind:
          type: string
          enum:
            - adcp
            - adapter
        provider:
          nullable: true
          type: string
        billingRoute:
          type: string
          enum:
            - direct
            - interchange
        status:
          type: string
          enum:
            - ready
            - seller_unavailable
            - needs_connection
            - needs_account_selection
            - needs_advertiser_mapping
            - needs_commercial_setup
            - platform_blocked
        canBuy:
          type: boolean
        reason:
          type: string
        action:
          nullable: true
          allOf:
            - $ref: '#/components/schemas/BuyerReadinessAction'
      required:
        - storefrontId
        - platformId
        - name
        - kind
        - provider
        - billingRoute
        - status
        - canBuy
        - reason
        - action
      additionalProperties: false
    ApiError:
      description: Structured error object
      type: object
      properties:
        code:
          description: Machine-readable error code
          type: string
        message:
          description: Human-readable error message
          type: string
        field:
          description: Field path associated with the error
          type: string
        details:
          description: Additional error context
          type: object
          additionalProperties: {}
      required:
        - code
        - message
      additionalProperties: false
    BuyerReadinessAction:
      description: >-
        Server-owned continuation for one buyer setup step. Operations are
        executed through buyer api_call; pages are opened through their typed
        owner.
      type: object
      properties:
        label:
          type: string
        operation:
          nullable: true
          type: string
        pathParams:
          nullable: true
          type: object
          additionalProperties:
            type: string
        page:
          nullable: true
          type: string
      required:
        - label
        - operation
        - pathParams
        - page
      additionalProperties: false
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: API key or access token

````