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

# Get Signup Programs

> This endpoint returns active signup programs.

This endpoint returns a list of active signup programs (earn\_intro\_premium) that are available for the merchant. These programs are typically displayed to users during the signup flow.

<Note>
  This endpoint is publicly accessible and does not require authentication. Programs are filtered based on the OAuth application context.
</Note>

### Response

<Snippet file="entities/program.mdx" />

<RequestExample>
  ```bash Get Signup Programs theme={null}
  curl https://api.thanxsandbox.com/signup_programs \
    -X GET \
    -H "Content-Type: application/json" \
    -H "Accept-Version: v4.0" \
    -H "Accept: application/json" \
    -H "X-ClientId: ${client_id}"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "programs": [
      {
        "id": "awe833ke24",
        "merchant_id": "ghwou3457f",
        "name": "Welcome Reward",
        "handle": "welcome-reward",
        "redeem": {
          "type": "manual",
          "text": "$5 off your next purchase",
          "detail": "Use this reward on your next visit",
          "window": 60,
          "venue": "all"
        }
      }
    ]
  }
  ```
</ResponseExample>
