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

# Get Agreement

> Fetch one assigned agreement for an account

Returns one assigned agreement for the account.

## Path Parameters

<ParamField path="customer_id" type="string" required>
  Identifier of the Platform customer (`cus_…`).
</ParamField>

<ParamField path="account_id" type="string" required>
  Identifier of the Platform end-customer account (`acct_…`).
</ParamField>

<ParamField path="agreement_id" type="string" required>
  Assigned agreement id (`aagr_…`).
</ParamField>

## Response

Returns 200 with an agreement object.

<ResponseField name="object" type="string">
  Always `agreement`.
</ResponseField>

<ResponseField name="id" type="string">
  Assigned agreement id (`aagr_…`).
</ResponseField>

<ResponseField name="title" type="string">
  Agreement title.
</ResponseField>

<ResponseField name="version" type="string">
  Agreement version.
</ResponseField>

<ResponseField name="content_url" type="string">
  URL of the agreement document to render to the end customer.
</ResponseField>

<ResponseField name="status" type="enum">
  One of `pending`, `accepted`, or `rejected`.
</ResponseField>

<ResponseField name="responded_at" type="string">
  ISO 8601 timestamp of the response; `null` while pending.
</ResponseField>

<ResponseField name="created_at" type="string">
  ISO 8601 timestamp when the agreement was assigned.
</ResponseField>

<ResponseField name="updated_at" type="string">
  ISO 8601 timestamp when the agreement was last updated.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "object": "agreement",
    "id": "aagr_2k9m4p7q1w8e5r3t6y0u2i4",
    "title": "Partner Platform Agreement (Non-US)",
    "version": "v1",
    "content_url": "https://docs.platform.example/agreements/partner-platform-agreement-non-us-v1.pdf",
    "status": "pending",
    "responded_at": null,
    "created_at": "2026-06-22T08:30:00Z",
    "updated_at": "2026-06-22T08:30:00Z"
  }
  ```
</ResponseExample>
