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

# View Kafka Exchanges

> Retrieve all available Kafka exchanges from the mock adapter service

<Warning>
  **Reference under review.** This endpoint is exposed by the mock-server, a development and testing component — not a production-facing API. For supported integration patterns, see [Consuming FlowX from external apps](/5.9/docs/platform-deep-dive/integrations/consuming-flowx-from-external-apps).
</Warning>

Retrieve a list of all available Kafka exchanges configured in the mock adapter service. This endpoint provides information about active Kafka message exchanges that can be used for testing and development purposes.

## Authentication

This endpoint requires authentication via Bearer token.

<ParamField header="Authorization" type="string" required>
  Bearer token for API authentication. Format: `Bearer YOUR_API_TOKEN`
</ParamField>

## Headers

<ParamField header="EXECUTION-USER" type="string">
  The user context for the request execution. Used for audit and tracking purposes.
</ParamField>

<ParamField header="Cache-Control" type="string">
  Cache control directive. Use `no-cache` to bypass caching.
</ParamField>

<ParamField header="Accept" type="string">
  Content type that the client can accept. Supports `*/*` for all types.
</ParamField>

<ParamField header="Accept-Encoding" type="string">
  Acceptable encoding methods for response compression. Supports `gzip, deflate, br`.
</ParamField>

## Request Example

<RequestExample>
  ```bash cURL theme={"system"}
  curl -X GET '{MOCK_ADAPTER_URL}/api/kafka-exchanges' \
    -H 'Authorization: Bearer YOUR_API_TOKEN' \
    -H 'EXECUTION-USER: upload_user' \
    -H 'Cache-Control: no-cache' \
    -H 'Accept: */*' \
    -H 'Accept-Encoding: gzip, deflate, br'
  ```
</RequestExample>


## Related topics

- [Mock integrations](/5.9/docs/platform-deep-dive/integrations/mock-integrations.md)
- [FlowX.AI 5.6.0 Release Notes](/release-notes/v5.x/v5.6.0-march-2026/v5.6.0-march-2026.md)
- [Kafka send action](/5.9/docs/building-blocks/actions/kafka-send-action.md)
- [UI Flows](/5.9/docs/building-blocks/ui-flows.md)
- [Resources](/5.9/docs/projects/resources.md)
