> ## Documentation Index
> Fetch the complete documentation index at: https://lava.so/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# TesterArmy

> AI QA agent API for automated code testing, test generation, and pull request review.

AI QA agent API for automated code testing, test generation, and pull request review. Best for CI/CD workflows needing automated test execution and quality assurance. Unlike general sandbox providers (RunTM, Indexable), TesterArmy is purpose-built for software testing with AI-driven test strategies.

1 example endpoint available through Lava's AI Gateway. See the [TesterArmy API docs](https://tester.army/docs/api/api-reference) for full documentation.

<Warning>This provider requires your own credentials — connect your API key or OAuth account before use.</Warning>

<Info>This is a **catch-all provider** — any valid URL under `https://api.tester.army` is supported. AI QA agent API. Construct URL as [https://api.tester.army/\&#123;path\&#125](https://api.tester.army/\&#123;path\&#125);. The endpoints below are curated examples.</Info>

## Endpoints

### Submit a testing task

**POST** `https://api.tester.army/v1/tests` — Free / request

<Tabs>
  <Tab title="SDK">
    ```typescript theme={null}
    const data = await lava.gateway('https://api.tester.army/v1/tests', { body: {"repo":"lavapayments/lava","task":"test pull request"} });
    ```
  </Tab>

  <Tab title="cURL">
    ```bash theme={null}
    curl -X POST "https://api.lava.so/v1/forward?u=https%3A%2F%2Fapi.tester.army%2Fv1%2Ftests" \
      -H "Authorization: Bearer $LAVA_SECRET_KEY" \
      -H "Content-Type: application/json" \
      -d '{"repo":"lavapayments/lava","task":"test pull request"}'
    ```
  </Tab>
</Tabs>

## Next Steps

<CardGroup cols={2}>
  <Card title="All Providers" icon="grid" href="/gateway/supported-providers">
    Browse all supported AI providers
  </Card>

  <Card title="Forward Proxy" icon="route" href="/gateway/forward-proxy">
    Learn how to construct proxy URLs and authenticate requests
  </Card>
</CardGroup>
