Skip to main content
GET
/
api
/
v1
/
tool-packs
/
List Tool Packs
curl --request GET \
  --url https://ah-api.merge.dev/api/v1/tool-packs/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "https://ah-api.merge.dev/api/v1/tool-packs/?page=2",
  "previous": null,
  "results": [
    {
      "id": "134e0111-0f67-44f6-98f0-597000290bb3",
      "name": "Support Agent tool pack",
      "description": "Ticketing connectors for support agent",
      "connectors": "Jira, Linear, Slack"
    }
  ]
}

Authorizations

Authorization
string
header
required

Production Access Key (Bearer)

Query Parameters

page
integer

A page number within the paginated result set.

page_size
integer

Number of results to return per page.

Response

200 - application/json
count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"https://ah-api.merge.dev/api/v1/tool-packs/?page=2"

previous
string<uri> | null
Example:

null