> ## Documentation Index
> Fetch the complete documentation index at: https://reach-owl.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# POST /api/v1/profile-growth — Create a Profile Growth Task

> Create an Instagram profile growth task that automatically engages with posts matching a hashtag or source. Set engage_react and engage_repost to control actions.

Create a profile growth task to automatically engage with Instagram posts. You can target posts by hashtag or another source, and specify which executors (browser profiles) will perform the engagement.

## Body parameters

<ParamField body="name" type="string" required>
  Name of the profile growth task.
</ParamField>

<ParamField body="team_id" type="integer" required>
  Team the task belongs to.
</ParamField>

<ParamField body="type" type="string" required>
  Platform type, such as `"instagram"`.
</ParamField>

<ParamField body="source_type" type="string" required>
  Source to target, such as `"post_hashtag"`.
</ParamField>

<ParamField body="post_url" type="string" required>
  The hashtag or URL to source posts from. For hashtags, pass just the term, e.g. `"growthhacking"`.
</ParamField>

<ParamField body="executor_ids" type="array" required>
  Array of executor IDs (browser profiles) that will perform engagement actions.
</ParamField>

<ParamField body="engage_react" type="boolean">
  Whether to react to (like) matched posts.
</ParamField>

<ParamField body="engage_repost" type="boolean">
  Whether to repost (share or story) matched posts.
</ParamField>

<ParamField body="limit" type="integer">
  Maximum number of posts to engage with. Defaults to `15`.
</ParamField>

<ParamField body="status" type="string">
  Initial status: `"draft"`, `"running"`, `"paused"`, or `"completed"`.
</ParamField>

## Example request

```bash theme={null}
curl -X POST "https://reachowl.com/api/v1/profile-growth" \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Engage Growth Posts",
    "team_id": 1,
    "type": "instagram",
    "source_type": "post_hashtag",
    "post_url": "growthhacking",
    "executor_ids": [3, 5],
    "engage_react": true,
    "engage_repost": false,
    "limit": 20,
    "status": "running"
  }'
```
