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

# Product status

> Sends all products and currencies on a preset interval. Provide the
product_ids you want status for.




## AsyncAPI

````yaml api-reference/advanced-trade-api/advanced-trade-asyncapi.json status
id: status
title: Product status
description: |
  Sends all products and currencies on a preset interval. Provide the
  product_ids you want status for.
servers:
  - id: production
    protocol: wss
    host: advanced-trade-ws.coinbase.com
    bindings: []
    variables: []
address: status
parameters: []
bindings: []
operations:
  - &ref_2
    id: statusSubscribe
    title: Subscribe to status
    description: Client sends a subscribe or unsubscribe request for the status channel.
    type: receive
    messages:
      - &ref_4
        id: subscribe_request
        contentType: application/json
        payload:
          - name: Subscription request
            description: Subscribe or unsubscribe to the status channel.
            type: object
            properties:
              - name: type
                type: string
                enumValues:
                  - subscribe
                  - unsubscribe
                required: true
              - name: channel
                type: string
                required: true
              - name: product_ids
                type: array
                description: Products to subscribe to, e.g. ["BTC-USD"].
                required: true
                properties:
                  - name: item
                    type: string
                    required: false
              - name: jwt
                type: string
                description: >-
                  CDP JWT. Optional here; recommended for connection
                  reliability.
                required: false
        headers: []
        jsonPayloadSchema:
          type: object
          additionalProperties: false
          required:
            - type
            - channel
            - product_ids
          properties:
            type:
              type: string
              enum:
                - subscribe
                - unsubscribe
              default: subscribe
              x-parser-schema-id: <anonymous-schema-34>
            channel:
              type: string
              default: status
              x-parser-schema-id: <anonymous-schema-35>
            product_ids:
              type: array
              items:
                type: string
                x-parser-schema-id: <anonymous-schema-37>
              description: Products to subscribe to, e.g. ["BTC-USD"].
              x-parser-schema-id: <anonymous-schema-36>
            jwt:
              type: string
              description: CDP JWT. Optional here; recommended for connection reliability.
              x-parser-schema-id: <anonymous-schema-38>
          x-parser-schema-id: <anonymous-schema-33>
        title: Subscription request
        description: Subscribe or unsubscribe to the status channel.
        example: |-
          {
            "type": "subscribe",
            "channel": "status",
            "product_ids": [
              "BTC-USD"
            ]
          }
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: subscribe_request
    bindings: []
    extensions: &ref_1
      - id: x-parser-unique-object-id
        value: status
  - &ref_3
    id: statusStream
    title: Status stream
    description: Server streams product status updates to subscribed clients.
    type: send
    messages:
      - &ref_5
        id: status
        contentType: application/json
        payload:
          - allOf: &ref_0
              - type: object
                properties:
                  channel:
                    type: string
                    description: The channel that produced this message.
                    x-parser-schema-id: <anonymous-schema-5>
                  timestamp:
                    type: string
                    format: date-time
                    description: Server time the message was sent (RFC 3339).
                    x-parser-schema-id: <anonymous-schema-6>
                  sequence_num:
                    type: integer
                    description: >-
                      Per-connection message sequence number; use it to detect
                      dropped or out-of-order messages.
                    x-parser-schema-id: <anonymous-schema-7>
                x-parser-schema-id: EnvelopeBase
              - type: object
                properties:
                  channel:
                    const: status
                    x-parser-schema-id: <anonymous-schema-40>
                  events:
                    type: array
                    items:
                      type: object
                      properties:
                        type:
                          type: string
                          enum:
                            - snapshot
                            - update
                          x-parser-schema-id: <anonymous-schema-43>
                        products:
                          type: array
                          items:
                            type: object
                            properties:
                              product_type:
                                type: string
                                x-parser-schema-id: <anonymous-schema-45>
                              id:
                                type: string
                                x-parser-schema-id: <anonymous-schema-46>
                              base_currency:
                                type: string
                                x-parser-schema-id: <anonymous-schema-47>
                              quote_currency:
                                type: string
                                x-parser-schema-id: <anonymous-schema-48>
                              base_increment:
                                type: string
                                x-parser-schema-id: <anonymous-schema-49>
                              quote_increment:
                                type: string
                                x-parser-schema-id: <anonymous-schema-50>
                              display_name:
                                type: string
                                x-parser-schema-id: <anonymous-schema-51>
                              status:
                                type: string
                                description: Trading status, e.g. online.
                                x-parser-schema-id: <anonymous-schema-52>
                              status_message:
                                type: string
                                x-parser-schema-id: <anonymous-schema-53>
                              min_market_funds:
                                type: string
                                x-parser-schema-id: <anonymous-schema-54>
                            x-parser-schema-id: ProductStatus
                          x-parser-schema-id: <anonymous-schema-44>
                      x-parser-schema-id: <anonymous-schema-42>
                    x-parser-schema-id: <anonymous-schema-41>
                x-parser-schema-id: <anonymous-schema-39>
            x-parser-schema-id: StatusEnvelope
            name: Status message
        headers: []
        jsonPayloadSchema:
          allOf: *ref_0
          x-parser-schema-id: StatusEnvelope
        title: Status message
        example: '{}'
        bindings: []
        extensions:
          - id: x-parser-unique-object-id
            value: status
    bindings: []
    extensions: *ref_1
sendOperations:
  - *ref_2
receiveOperations:
  - *ref_3
sendMessages:
  - *ref_4
receiveMessages:
  - *ref_5
extensions:
  - id: x-parser-unique-object-id
    value: status
securitySchemes: []

````