Skip to main content
POST
/
api
/
v1
/
groups
/
{id}
/
auto-buy
curl --request POST \
  --url https://api.alpha-labs.trade/api/v1/groups/{id}/auto-buy \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "enabled": true,
  "amountUsd": "25.00"
}
'
{
  "data": {
    "userDynamicId": "<string>",
    "groupId": "<string>",
    "username": "<string>",
    "avatar": "<string>",
    "subscriptionStatus": "<string>",
    "nextChargeAt": "2023-11-07T05:31:56Z",
    "inviteCode": "<string>",
    "autoBuyEnabled": true,
    "autoBuyAmountUsd": "12.50",
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

Send your API key as Authorization: Bearer murmo_.... Keys are created in the Murmo app. Header-only — keys are never read from the query string. Valid for the REST API under /api/v1 only (not the GraphQL endpoint).

Path Parameters

id
string
required

Body

application/json
enabled
boolean
required
amountUsd
string

A monetary amount as a full-precision plain decimal string in USD — never a number, never raw base units, never scientific notation, never rounded. Parse with a decimal library; round only for display.

Example:

"12.50"

Response

The updated member.

data
object