---
title: "Get X account connection status"
method: GET
path: "/api/v1/x/account-connection-attempts/{id}"
tags: ["X Accounts"]
---

# Get X account connection status

`GET /api/v1/x/account-connection-attempts/{id}`

Returns progress for an X account connection attempt.

## Path parameters

- `id` string, required

## Response `200`

Current X account connection status

- union
  - object — The connection is still in progress.
    - `object` 'x_account_connection_attempt', required
    - `id` string, required
    - `status` 'pending', required
    - `pollAfterMs` integer, required
  - object — The account connected successfully.
    - `object` 'x_account_connection_attempt', required
    - `id` string, required
    - `status` 'success', required
  - object — The connection reached a final failure.
    - `object` 'x_account_connection_attempt', required
    - `id` string, required
    - `status` 'failed', required
    - `error` string, required
    - `reason` string
    - `retryable` boolean, required
  - object — Resumable account connection challenge. Submit the email code to finish the same connection attempt.
    - `object` 'x_account_connection_challenge', required
    - `id` string, required
    - `status` 'requires_email_code', required
    - `expiresAt` string, date-time, required
    - `message` string, required
    - `username` string, required

## Other responses

- `400` — Invalid input
- `401` — Unauthenticated
- `429` — Xquik tier rate limit exceeded. The response includes a `Retry-After` header with the number of seconds to wait before retrying.
- `default` — Unexpected error.

## Changes

- **2026-09-26** `9ae77b3e4fdc` — 8 warning
  - added the new `bookmark_folders_unavailable` enum value to the `allOf[#/components/schemas/Error]/error/oneOf[subschema #1: LegacyErrorCode]/` response property for the response status `429`
  - added the new `bookmark_folders_unavailable` enum value to the `allOf[#/components/schemas/Error]/error/oneOf[subschema #2: StructuredError]/code` response property for the response status `429`
  - added the new `bookmark_folders_unavailable` enum value to the `error/oneOf[subschema #1: LegacyErrorCode]/` response property for the response status `400`
  - added the new `bookmark_folders_unavailable` enum value to the `error/oneOf[subschema #1: LegacyErrorCode]/` response property for the response status `401`
  - …4 more
- …earlier changes not shown

[Full history](https://skmtc.dev/xquik-dev/apis/xquik-api-2/changes/api/v1/x/account-connection-attempts/:id/get.md)

---

[API](https://skmtc.dev/xquik-dev/apis/xquik-api-2.md) · [All operations](https://skmtc.dev/xquik-dev/apis/xquik-api-2/llms.txt) · [OpenAPI document](https://skmtc.dev/xquik-dev/apis/xquik-api-2/revisions/9ae77b3e4fdc?raw)
