CodeWallDocs
API Reference

API Reference

Build integrations, automate workflows, and extend CodeWall programmatically.

The CodeWall API lets you programmatically manage tests, retrieve findings, and integrate CodeWall into your existing workflows.

Base URL

https://api.codewall.ai/v1

Authentication

All API requests require a Bearer token in the Authorization header:

Authorization: Bearer <your-api-key>

Generate API keys from Settings > API Keys in the platform. See API Authentication for details.

Quick start

# List your recent tests
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.codewall.ai/v1/tests

# Get findings for a specific test
curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.codewall.ai/v1/tests/test_abc123/findings

In this section