> For the complete documentation index, see [llms.txt](https://docs.alphanume.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.alphanume.com/readme.md).

# 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="/files/qWBmnpSCTFMmDegXXACn">/files/qWBmnpSCTFMmDegXXACn</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="/files/CNwaDNSVMqoL6rUZL3OM">/files/CNwaDNSVMqoL6rUZL3OM</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="/files/4yfn1vToLNk6s6SMcbdC">/files/4yfn1vToLNk6s6SMcbdC</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 %}
