canonical: https://jentic.com/apis/reloadly.com/topupsapi

# Reloadly topupsapi

Polls is a simple API allowing consumers to view polls and vote in them. The API exposes 2 endpoints.

## For AI agents

Programmatically create a new question, list all questions. Covers 2 operations.

## Scope

Does not handle payments, communications, or crm - use for developer tools only.

## Capabilities

- Create a New Question
- List All Questions
- Integrate topupsapi into automated workflows
- Query and filter topupsapi records by parameters
- Monitor topupsapi operational status and events

## Use cases

### Developer Tools Operations

Use the topupsapi to perform developer tools operations programmatically. The API provides 2 endpoints covering core functionality including create a new question, list all questions.

Example prompt: Call POST /questions to create a new question

### Data Retrieval and Monitoring

Query topupsapi resources on a schedule to track changes, generate alerts, or feed downstream dashboards. Agents poll relevant endpoints, compare against previous state, and trigger actions when thresholds are crossed.

Example prompt: Poll the primary topupsapi endpoint, compare response to last known state, and alert if changed

### AI Agent Integration via Jentic

AI agents discover and call topupsapi endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle none tokens manually.

Example prompt: Search Jentic for 'create a new question', load the operation schema, and execute with Jentic-managed credentials

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | /questions | Create a New Question |
| GET | /questions | List All Questions |

## Key resources

- **Questions** — Operations for questions

## Why Jentic

- **Setup:** This topupsapi spec exposes unauthenticated question endpoints, so wiring it by hand still means managing its base host and request shapes yourself. Through Jentic you install once, import it from the API Directory, and your agent calls it with the connection handled for you.
- **Permission scoping:** This API identifies questions in the request body rather than the URL path, so limit the agent to the operations it needs, such as listing questions. You choose the operations it may call, so creating a question is not included unless you add it.
- **Credential handling:** This API declares no credentials, so there is nothing to store, and no secret ever enters the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'create a new question' or 'list questions', and Jentic returns the matching operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Github** — Alternative developer tools API
- **Gitlab** — Alternative developer tools API

## FAQ

### What authentication does the topupsapi use?

The topupsapi uses no authentication. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.

### Can I create a new question with the topupsapi?

Yes. Use the POST /questions endpoint. The API returns structured JSON responses that agents can parse and act on directly.

### What are the rate limits for the topupsapi?

Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.

### How do I create a new question through Jentic?

Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'create a new question'. Jentic returns the matching topupsapi operation with its input schema. Load the schema and execute the call - credentials are injected automatically.

### How many endpoints does the topupsapi have?

The topupsapi exposes 2 endpoints covering questions operations.

### Can I limit what my agent is allowed to do with the topupsapi?

Yes. Because Jentic One is self-hosted, you decide which topupsapi operations your agent may call, and your own rules govern access. Since this API identifies questions in the request body rather than the URL path, you can allow read-only calls like GET /questions to list questions while excluding POST /questions so the agent cannot create one unless you add that operation. Nothing beyond the operations you approve is available to the agent.
