Skip to main content
POST
/
signals
/
batch
Create signals in bulk
curl --request POST \
  --url https://app.gaintrace.com/api/v1/signals/batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": [
    {
      "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "title": "<string>",
      "description": "<string>",
      "metadata": {}
    }
  ]
}
'
{
  "data": [
    {
      "index": 123,
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "error": "<string>"
    }
  ],
  "meta": {
    "received": 123,
    "succeeded": 123,
    "failed": 123
  }
}

Authorizations

Authorization
string
header
required

Bearer API key. Secret server keys start with gt_live_; client-safe browser keys start with gt_pub_ (write-only, origin-pinned). Create and scope keys in Settings → API Keys.

Body

application/json
data
object[]
required
Required array length: 1 - 1000 elements

Response

Per-item outcomes.

data
object[]
meta
object
Last modified on July 6, 2026