> For the complete documentation index, see [llms.txt](https://exiles-interactive.gitbook.io/centarius-api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://exiles-interactive.gitbook.io/centarius-api-documentation/revenue/sharing-revenue-data.md).

# Sharing Revenue Data

As a developer, we want you to have control over your game's revenue generation methods. However, you must share the revenue data with us for the revenue generated via Centarius. The Centarius API makes this easy and transparent, without losing you your control.

#### Request URL

```http
POST https://www.centarius.app/enter-revenue/
```

#### Request Body

<table><thead><tr><th width="150">Name</th><th width="114">Required</th><th width="126">Type</th><th>Description</th></tr></thead><tbody><tr><td><code>game_id</code></td><td><code>True</code></td><td><code>string</code></td><td>Your game's Centarius game ID. </td></tr><tr><td><code>method</code></td><td><code>True</code></td><td><code>integer</code></td><td>The method for the revenue generation - use <code>1</code> for ad revenue, and <code>2</code> for any premium purchase with real currency.</td></tr><tr><td><code>amount</code></td><td><code>True</code></td><td><code>integer</code></td><td>The numerical amount, in US$, of revenue generated. </td></tr></tbody></table>

#### Response&#x20;

<table><thead><tr><th width="166">Code</th><th width="176">Type</th><th>Response</th></tr></thead><tbody><tr><td><code>200</code></td><td><code>HttpResponse</code></td><td>Revenue entry recorded successfully.</td></tr><tr><td><code>500</code></td><td><code>JsonResponse</code></td><td><code>{'error': Exception as str}</code></td></tr></tbody></table>
