List tools
GEThttps://api.gabber.dev/v1/tool/list
List tools
Responses
- 200
- 400
- 500
List of tools
- application/json
- Schema
- Example (auto)
Schema
next_pagestringnullable
The token for the next page of results, or null if there are no more pages.
total_countintegerrequired
The total number of items available.
values object[]required
{
"next_page": "string",
"total_count": 0,
"values": [
{
"id": "string",
"name": "string",
"description": "string",
"parameters": [
{
"name": "string",
"description": "string",
"type": "string",
"required": true,
"default": "string"
}
],
"call_settings": {
"id": "string",
"destination": {
"type": "web_request",
"url": "string"
}
}
}
]
}
Bad request
- application/json
- Schema
- Example (auto)
Schema
typestring
The type of the error.
Possible values: [usage_limit_exceeded
, project_disabled
, moderation_error
, invalid_input
]
messagestring
A human-readable message describing the error.
{
"type": "usage_limit_exceeded",
"message": "string"
}
Internal server error
- application/json
- Schema
- Example (auto)
Schema
errorstring
Error message.
{
"error": "string"
}
Authorization: x-api-key
name: x-api-keytype: apiKeyin: header
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.gabber.dev/v1/tool/list");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("x-api-key", "<x-api-key>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear