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: Bearer <token>'
{
  "count": 123,
  "next": "https://ah-api.merge.dev/api/v1/tool-packs/?page=4",
  "previous": "https://ah-api.merge.dev/api/v1/tool-packs/?page=2",
  "results": [
    {
      "id": "3c90c3c0-6d46-4b50-8888-8dd25736052f",
      "name": "Support Agent Tool Pack",
      "description": "Ticketing connectors for support agents",
      "connectors": [
        {
          "name": "Linear",
          "slug": "linear",
          "source_url": "https://linear.app",
          "logo_url": "https://linear.app/favicon.ico",
          "categories": [
            "Project Management"
          ],
          "tools": [
            {
              "name": "create_issue",
              "description": "Create a new issue in Linear"
            },
            {
              "name": "list_issues",
              "description": "List issues in Linear"
            }
          ]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "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=4"

previous
string<uri> | null
Example:

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