get-documentation
Retrieve specific PaymanAI documentation topics like API reference, error handling, and setup to streamline integration development with contextual support.
Instructions
Get PaymanAI documentation on a specific topic
Input Schema
Name | Required | Description | Default |
---|---|---|---|
topic | Yes | The documentation topic to retrieve |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"topic": {
"description": "The documentation topic to retrieve",
"enum": [
"quickstart",
"playground",
"setup-and-installation",
"create-payees",
"send-payments",
"create-payee",
"search-payees",
"check-balances",
"bill-payment-agent",
"api-reference",
"api-keys",
"error-handling"
],
"type": "string"
}
},
"required": [
"topic"
],
"type": "object"
}