# Audit a Coin

### **POST** /api/v1/coins/audit

Content Type: application/json

### Required Parameters

* chain (string) - The blockchain network you want to launch a token on (Currently only 'solana' is supported).
* contractAddress (string) - The contract address (CA) of the coin.

### Example Request

```
curl -X POST "https://api.coinchomp.com/api/v1/coins/audit" \
-H "Authorization: Bearer {API_KEY}" \
-H "Content-Type: application/json" \
-d '{
  "chain": "solana",
  "contractAddress": "31ZsWDGgVT33YXD5gpmTwrVtghe2YuEkqmsipmekpump"
}'
```

The above request will return some json containing a requestId which you can use to query the [status of the request](/api-v1/request-status.md).

```
{
    "success": true,
    "requestId": "epxq3IVI8FUq7WhBQ5qM"
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.coinchomp.com/api-v1/api-launch-token.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
