# Add a reaction

> Adds an emoji reaction to a message as your app user. Parameters, responses, and code examples in cURL, JavaScript, Python, Go, and Ruby.

Source: https://www.bloomtext.com/developers/api/reference/create-reaction/

`POST /messages/{messageId}/reactions`

Adds an emoji reaction to a message as your app user.

**Scope** `reactions:write` · **Idempotent** with `Idempotency-Key`

### Path parameters

- `messageId` (UUID, required): ID of the message.

### Headers

- `Idempotency-Key` (UUID, required): A UUID you generate for each write. Retrying with the same key returns the original result for 24 hours. Reusing a key with a different method, path, or body returns 409.

### Body parameters

- `emoji` (string, required): A single emoji, such as 👍.

### Returns

Returns `201 Created` with the [Reaction object](https://www.bloomtext.com/developers/api/reference/reaction-object/).

### Errors

Failed requests return `application/problem+json` [problem details](https://www.bloomtext.com/developers/api/errors/). The errors specific to this endpoint:

| Status | Code | Meaning |
| --- | --- | --- |
| 400 | `invalid_request` | The request is malformed, such as invalid JSON. |
| 401 | `unauthorized` | The API key is missing, revoked, or invalid. |
| 403 | `insufficient_scope` | The key lacks the required scope. |
| 404 | `not_found` | The resource doesn’t exist or isn’t visible to this key. |
| 409 | `idempotency_key_reused` | The Idempotency-Key was already used with a different request. |
| 422 | `validation_failed` | A field failed validation. See `field_errors`. |
| 429 | `rate_limited` | Too many requests. Retry after `Retry-After` seconds. |

```bash filename="Request"
curl -X POST "https://api.bloomtext.com/v1/messages/4cbfdb50-6b7d-45d4-94b3-05a52ce3f4d1/reactions" \
  -H "Authorization: Bearer $BLOOMTEXT_API_KEY" \
  -H "Idempotency-Key: $(uuidgen)" \
  -H "Content-Type: application/json" \
  -d '{"emoji":"👍"}'
```

```js filename="Request"
const response = await fetch('https://api.bloomtext.com/v1/messages/4cbfdb50-6b7d-45d4-94b3-05a52ce3f4d1/reactions', {
  method: 'POST',
  headers: {
    Authorization: `Bearer ${process.env.BLOOMTEXT_API_KEY}`,
    'Idempotency-Key': crypto.randomUUID(),
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({"emoji":"👍"}),
})

if (!response.ok) throw new Error(`BloomText API error: ${response.status}`)
const data = await response.json()
```

```python filename="Request"
import os
import uuid

import requests

response = requests.post(
    "https://api.bloomtext.com/v1/messages/4cbfdb50-6b7d-45d4-94b3-05a52ce3f4d1/reactions",
    headers={
        "Authorization": f"Bearer {os.environ['BLOOMTEXT_API_KEY']}",
        "Idempotency-Key": str(uuid.uuid4()),
    },
    json={"emoji":"👍"},
)
response.raise_for_status()
data = response.json()
```

```go filename="Request"
package main

import (
	"bytes"
	"fmt"
	"io"
	"net/http"
	"os"

	"github.com/google/uuid"
)

func main() {
	body := bytes.NewBufferString(`{"emoji":"👍"}`)
	req, err := http.NewRequest("POST", "https://api.bloomtext.com/v1/messages/4cbfdb50-6b7d-45d4-94b3-05a52ce3f4d1/reactions", body)
	if err != nil {
		panic(err)
	}
	req.Header.Set("Authorization", "Bearer "+os.Getenv("BLOOMTEXT_API_KEY"))
	req.Header.Set("Idempotency-Key", uuid.NewString())
	req.Header.Set("Content-Type", "application/json")

	res, err := http.DefaultClient.Do(req)
	if err != nil {
		panic(err)
	}
	defer res.Body.Close()

	out, _ := io.ReadAll(res.Body)
	fmt.Println(res.Status, string(out))
}
```

```ruby filename="Request"
require "net/http"
require "json"
require "securerandom"

uri = URI("https://api.bloomtext.com/v1/messages/4cbfdb50-6b7d-45d4-94b3-05a52ce3f4d1/reactions")
request = Net::HTTP::Post.new(uri)
request["Authorization"] = "Bearer #{ENV.fetch("BLOOMTEXT_API_KEY")}"
request["Idempotency-Key"] = SecureRandom.uuid
request["Content-Type"] = "application/json"
request.body = { emoji: "👍" }.to_json

response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) do |http|
  http.request(request)
end
data = JSON.parse(response.body)
```

```json filename="Response · 201 Created"
{
  "message_id": "4cbfdb50-6b7d-45d4-94b3-05a52ce3f4d1",
  "user_id": "8b9c2d2f-6b1a-44f4-a7b1-0d6d3f2d6f55",
  "emoji": "👍",
  "created_at": "2026-09-21T15:04:05Z"
}
```
