# Developer Platform

<h2 align="center">Alphanume Documentation</h2>

<p align="center">Alphanume delivers fast, reliable access to niche alternative datasets built for traders, quants, and researchers. Our mission is simple: <strong>surface the signals others overlook</strong> — with clean endpoints, low latency, and production-ready outputs.</p>

<table data-view="cards"><thead><tr><th></th><th></th><th></th><th data-hidden data-card-target data-type="content-ref"></th><th data-hidden data-card-cover data-type="files"></th></tr></thead><tbody><tr><td><h4><i class="fa-leaf">:leaf:</i></h4></td><td><strong>Get Started in Minutes</strong></td><td>Make your first data request in under a minute.</td><td><a href="https://alphanume.gitbook.io/alphanume-docs/documentation">https://alphanume.gitbook.io/alphanume-docs/documentation</a></td><td><a href="https://3087441096-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FPWcYyRmlgNrOqpqldIAV%2Fuploads%2FtIGNeofJ4u6KU7ohQgi6%2Fquick-start-light.png?alt=media&#x26;token=42ef4d1c-f39d-4853-ab9d-31a2e3bba951">quick-start-light.png</a></td></tr><tr><td><h4><i class="fa-cloud-rain">:cloud-rain:</i></h4></td><td><strong>Dilution Events</strong></td><td>Point-in-time S-1 filings labeled for dilutive impact, enriched with market context and tracked through effectiveness or withdrawal.</td><td><a href="https://alphanume.gitbook.io/alphanume-docs/documentation/datasets/dilution/overview">https://alphanume.gitbook.io/alphanume-docs/documentation/datasets/dilution/overview</a></td><td><a href="https://3087441096-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FPWcYyRmlgNrOqpqldIAV%2Fuploads%2FnUnw1s4BYh1M7zb4K1Yr%2Fdilution-docs-light.png?alt=media&#x26;token=ed5011ed-4f04-4b5d-879a-4bce6419c3d0">dilution-docs-light.png</a></td></tr><tr><td><h4><i class="fa-terminal">:terminal:</i></h4></td><td><strong>API Guide</strong></td><td>Learn how requests are structured, how filtering and pagination work, and how to query datasets programmatically.</td><td><a href="https://alphanume.gitbook.io/alphanume-docs/documentation/overview/how-the-api-works">https://alphanume.gitbook.io/alphanume-docs/documentation/overview/how-the-api-works</a></td><td><a href="https://3087441096-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FPWcYyRmlgNrOqpqldIAV%2Fuploads%2FsVInqna35GinqS3aJY4u%2Freference-docs-light.png?alt=media&#x26;token=8954d95b-6ae2-41bc-80b3-986073dfb68b">reference-docs-light.png</a></td></tr></tbody></table>

{% columns %}
{% column %}

### Get started in 5 minutes

Setting up your first API call should be the easiest part of getting started. With clear endpoints, copy-paste-ready examples, and quick authentication, you’ll be up and running in minutes—not hours.

No guesswork, no complexity—just your first successful call, fast.

<a href="https://alphanume.gitbook.io/alphanume-docs/documentation" class="button primary" data-icon="rocket-launch">Get started</a> <a href="https://alphanume.gitbook.io/alphanume-docs/documentation/overview/how-the-api-works" class="button secondary" data-icon="terminal">API Guide</a>
{% endcolumn %}

{% column %}
{% code title="alphanume.py" expandable="true" %}

```python
import pandas as pd
import requests

data_request = requests.get(f"https://api.alphanume.com/v1/dilution?limit=20").json()
dataframe = pd.json_normalize(data_request["data"])

print(dataframe)
```

{% endcode %}
{% endcolumn %}
{% endcolumns %}
