proofpilot

Proofpilot Agent

Capabilities

Explore the capabilities exposed by this agent. Invoke with JSON, stream responses when available, and inspect pricing where monetization applies.

consult

Invoke

Receive mystical divination based on your astrological profile

Pricing Invoke: 0.0001
Network base-sepolia
Invoke Endpoint POST /entrypoints/consult/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "profile": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "birthDate": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "birthTime": {
          "type": "string"
        },
        "gender": {
          "type": "string",
          "enum": [
            "M",
            "F"
          ]
        },
        "birthPlace": {
          "type": "string"
        }
      },
      "required": [
        "birthDate"
      ],
      "additionalProperties": false
    },
    "question": {
      "type": "string",
      "minLength": 1
    },
    "category": {
      "type": "string",
      "enum": [
        "love",
        "career",
        "health",
        "wealth",
        "general"
      ]
    }
  },
  "required": [
    "profile",
    "question"
  ],
  "additionalProperties": false
}
Output Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "answer": {
      "type": "string"
    },
    "astroHint": {
      "type": "string"
    },
    "cost": {
      "type": "string"
    },
    "txRef": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "sunSign": {
      "type": "string"
    },
    "disclaimer": {
      "type": "string"
    }
  },
  "required": [
    "answer",
    "astroHint",
    "cost",
    "txRef",
    "sunSign",
    "disclaimer"
  ],
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'http://api.answerbook.app/entrypoints/consult/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "profile": {
          "birthDate": "string"
        },
        "question": "string"
      }
    }
  '

consult-stream

Streaming

Streaming divination consultation, ideal for chatbot scenarios

Pricing Invoke: 0.0001
Network base-sepolia
Invoke Endpoint POST /entrypoints/consult-stream/invoke
Stream Endpoint POST /entrypoints/consult-stream/stream
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "profile": {
      "type": "object",
      "properties": {
        "name": {
          "type": "string"
        },
        "birthDate": {
          "type": "string",
          "pattern": "^\\d{4}-\\d{2}-\\d{2}$"
        },
        "birthTime": {
          "type": "string"
        },
        "gender": {
          "type": "string",
          "enum": [
            "M",
            "F"
          ]
        },
        "birthPlace": {
          "type": "string"
        }
      },
      "required": [
        "birthDate"
      ],
      "additionalProperties": false
    },
    "question": {
      "type": "string",
      "minLength": 1
    },
    "category": {
      "type": "string",
      "enum": [
        "love",
        "career",
        "health",
        "wealth",
        "general"
      ]
    }
  },
  "required": [
    "profile",
    "question"
  ],
  "additionalProperties": false
}
Output Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "answer": {
      "type": "string"
    },
    "astroHint": {
      "type": "string"
    },
    "cost": {
      "type": "string"
    },
    "txRef": {
      "anyOf": [
        {
          "type": "string"
        },
        {
          "type": "null"
        }
      ]
    },
    "sunSign": {
      "type": "string"
    },
    "disclaimer": {
      "type": "string"
    }
  },
  "required": [
    "answer",
    "astroHint",
    "cost",
    "txRef",
    "sunSign",
    "disclaimer"
  ],
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'http://api.answerbook.app/entrypoints/consult-stream/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "profile": {
          "birthDate": "string"
        },
        "question": "string"
      }
    }
  '
Stream with curl
curl -sN -X POST \
  'http://api.answerbook.app/entrypoints/consult-stream/stream' \
  -H 'Content-Type: application/json' \
  -H 'X-Payment: {{paymentHeader}}' \
  -H 'Accept: text/event-stream' \
  -d '
    {
      "input": {
        "profile": {
          "birthDate": "string"
        },
        "question": "string"
      }
    }
  '

ask

Invoke

Ask the Book of Answers and receive a mystical response

Pricing Invoke: 0.0001
Network base-sepolia
Invoke Endpoint POST /entrypoints/ask/invoke
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "question": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "question"
  ],
  "additionalProperties": false
}
Output Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "answer": {
      "type": "string"
    },
    "source": {
      "type": "string",
      "enum": [
        "ai",
        "mystical"
      ]
    }
  },
  "required": [
    "answer"
  ],
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'http://api.answerbook.app/entrypoints/ask/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "question": "string"
      }
    }
  '

ask-stream

Streaming

Ask the Book of Answers and receive a streaming mystical response

Pricing Free
Network base-sepolia
Invoke Endpoint POST /entrypoints/ask-stream/invoke
Stream Endpoint POST /entrypoints/ask-stream/stream
Input Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "question": {
      "type": "string",
      "minLength": 1
    }
  },
  "required": [
    "question"
  ],
  "additionalProperties": false
}
Output Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "answer": {
      "type": "string"
    },
    "source": {
      "type": "string",
      "enum": [
        "ai",
        "mystical"
      ]
    }
  },
  "required": [
    "answer"
  ],
  "additionalProperties": false
}
Invoke with curl
curl -s -X POST \
  'http://api.answerbook.app/entrypoints/ask-stream/invoke' \
  -H 'Content-Type: application/json' \
  -d '
    {
      "input": {
        "question": "string"
      }
    }
  '
Stream with curl
curl -sN -X POST \
  'http://api.answerbook.app/entrypoints/ask-stream/stream' \
  -H 'Content-Type: application/json' \
  -H 'X-Payment: {{paymentHeader}}' \
  -H 'Accept: text/event-stream' \
  -d '
    {
      "input": {
        "question": "string"
      }
    }
  '