Skip to main content
POST
/
v1
/
flow
/
tools
/
{tool_id}
/
duplicate
Clone tool
curl --request POST \
  --url https://flow.seekr.com/v1/flow/tools/{tool_id}/duplicate \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "config": {
    "FILE_SEARCH_INDEX": "<string>",
    "EMBEDDING_MODEL": "<string>",
    "TOP_K": 10,
    "SCORE_THRESHOLD": 0
  },
  "user_id": "<string>",
  "team_id": "<string>",
  "version": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "description": "<string>",
  "type": "file_search"
}
Create a copy of an existing tool. The duplicated tool gets a new ID and can optionally be given a new name.
❗ Important Agent-as-tool type tools cannot be duplicated. Attempting to duplicate an agent-as-tool returns an error.

Authorizations

Authorization
string
header
required

Seekr API Key without 'Bearer' Prefix

Path Parameters

tool_id
string
required

Body

application/json

Request schema for duplicating a tool.

name
string | null

Response

Successful Response

id
string
required
name
string
required
config
FileSearchConfig · object
required
user_id
string
required
team_id
string | null
required
status
enum<string>
required
Available options:
Active,
Inactive,
Deprecated,
Pending_authorization,
Failed
version
integer
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
description
string | null
type
string
default:file_search
Allowed value: "file_search"
Last modified on June 18, 2026