Cowrie API Reference

Cowrie API (1.0.0)

Download OpenAPI specification:

API interface for Cowrie's tax intake form system.

Check an address

Determine whether screening has completed for the provided address. Send your client secret in the Authorization header. The address 0x0000000000000000000000000000000000000001 is reserved for testing and always returns completed: true.

Authorizations:
client_secret
Request Body schema: application/json
required
address
required
string^0x[a-fA-F0-9]{40}$

EVM-compatible address to check.

Responses

Request samples

Content type
application/json
{
  • "address": "0x0000000000000000000000000000000000000001"
}

Response samples

Content type
application/json
Example
{
  • "completed": true
}