# Signaturescan

<mark style="color:green;">`POST`</mark> `https://www.cyberscope.io/api/signaturescan`

Search for event, error, and function signatures that are stored in the Cyberscope Ethereum Signature Database

#### Request Body

| Name | Type   | Description                                                                                                     |
| ---- | ------ | --------------------------------------------------------------------------------------------------------------- |
| q    | String | <p><code>balanceOf(address)</code> or <code>0x70a08231.</code><br><code>A method signature or a hash</code></p> |

{% tabs %}
{% tab title="200: OK " %}

````json
```json
[
  {
    "id": "63d94fc766e71722846b29a7", // the database id of the entry
    "name": "transfer(address,uint256)", // the method signature
    "types": ["function"], // the type of the method "function|event|error"
    "signature": "0xa9059cbb2ab09eb219583f4a59a5d0623ade346d962bcd4e46b11da047c9049b", the entire signature hash
    "hash": "0xa9059cbb", // the short signature hash
    "total": 8884 // the number of contracts that this method is located
  }
]

```
````

{% endtab %}
{% endtabs %}
