Skip to main content

Documentation Index

Fetch the complete documentation index at: https://api-docs.nunu.ai/llms.txt

Use this file to discover all available pages before exploring further.

Getting Started

Integrate nunu.ai’s AI-powered game testing into your development workflow.

Introduction

Overview of the API, base URL, and response formats

Authentication

Create and manage API keys with scoped permissions

API Endpoints

Runs

Start tests, monitor progress, retrieve results, and access bug reports

Builds

Upload and manage game builds in nunu.ai’s cloud storage

Quick Reference

Runs

EndpointMethodDescription
/runsGETList runs with filtering and pagination
/runsPOSTStart a test or test plan
/runs/{runId}GETGet detailed run information with artifacts
/runs/{runId}/bugsGETList bugs found in a run
/runs/stopPOSTStop one or more running tests

Builds

EndpointMethodDescription
/builds/uploadPOSTInitiate a multipart build upload
/builds/upload/partsGETGet presigned URLs for upload parts
/builds/upload/completePOSTComplete the upload
/builds/uploadDELETECancel an in-progress upload

Authentication

All API requests require an API key in the X-Api-Key header:
curl -X GET "https://nunu.ai/api/v1/runs" \
  -H "X-Api-Key: YOUR_API_TOKEN"
Get your API keys from Project Admin → API Keys in the nunu.ai dashboard.

Learn more about authentication

API key management, permissions, and security best practices