Skip to content

Fuzzing

10 endpoints. Every path below is served by bevm-backend behind the gateway at https://api.trilocore.ai.

POST /api/v1/bevm/fuzz-runs

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success 200
Upstream bevm-backend

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/bevm/fuzz-runs \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

DELETE /api/v1/bevm/fuzz-runs/{uid}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success 200
Upstream bevm-backend
curl -X DELETE https://api.trilocore.ai/api/v1/bevm/fuzz-runs/{uid} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/bevm/fuzz-runs/{uid}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success 200
Upstream bevm-backend
curl -X GET https://api.trilocore.ai/api/v1/bevm/fuzz-runs/{uid} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/bevm/fuzz-runs/{uid}/corpus-entries

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success 200
Upstream bevm-backend
curl -X GET https://api.trilocore.ai/api/v1/bevm/fuzz-runs/{uid}/corpus-entries \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/bevm/fuzz-runs/{uid}/corpus-entries/{name}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success 200
Upstream bevm-backend
curl -X GET https://api.trilocore.ai/api/v1/bevm/fuzz-runs/{uid}/corpus-entries/{name} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/bevm/fuzz-runs/{uid}/inputs

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success 200
Upstream bevm-backend
curl -X GET https://api.trilocore.ai/api/v1/bevm/fuzz-runs/{uid}/inputs \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

POST /api/v1/bevm/fuzz-runs/{uid}:advance

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success 200
Upstream bevm-backend

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/bevm/fuzz-runs/{uid}:advance \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

POST /api/v1/bevm/fuzz-runs/{uid}:stop

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success 200
Upstream bevm-backend

Request body not published

This endpoint accepts a body, but no machine-readable schema for it is published yet, so none is shown. The example below is therefore incomplete — do not read it as "send no body".

curl -X POST https://api.trilocore.ai/api/v1/bevm/fuzz-runs/{uid}:stop \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/bevm/wordlists

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success 200
Upstream bevm-backend
curl -X GET https://api.trilocore.ai/api/v1/bevm/wordlists \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"

GET /api/v1/bevm/wordlists/{name}

Property Value
Authentication Authorization: Bearer (jns_ key or SSO session)
Idempotency-Key not required
Success 200
Upstream bevm-backend
curl -X GET https://api.trilocore.ai/api/v1/bevm/wordlists/{name} \
  -H "Authorization: Bearer $TRILOCORE_API_KEY"