RED Atlas External API
Project description
redatlas
Official Python SDK for the RED Atlas External API.
Use it to authenticate with your RED Atlas API key and call the public data and reports endpoints.
API Docs
For endpoint behavior, supported parameters, and response details, see the official API documentation:
https://api.atlas.red/es/docs
SDKs
- Python:
pip install redatlas
Install
pip install redatlas
Quickstart
from redatlas import RedAtlasClient
client = RedAtlasClient(
api_key="ra_live_...",
)
records = client.data.data_list(market="col", entity_type="listings", limit=3)
print(records.meta.limit)
Authentication
The SDK is intended to be used with your RED Atlas API key.
from redatlas import RedAtlasClient
client = RedAtlasClient(api_key="ra_live_...")
records = client.data.data_list(market="col", entity_type="listings", limit=3)
print(records)
Examples
from redatlas import RedAtlasClient
client = RedAtlasClient(api_key="ra_live_...")
market = client.data.data_market(market="col")
records = client.data.data_list(market="col", entity_type="listings", limit=3)
report = client.reports.reports_get_public("rpt_public_123")
print(market.data.available_entities)
print(len(records.data))
print(report.data.id)
Notes
- The public entrypoint is
RedAtlasClient - Standard usage is
RedAtlasClient(api_key="ra_live_...") - API parameters and endpoint semantics are documented at
https://api.atlas.red/es/docs - The default API host is the production RED Atlas API
- Integration tests in this repo verify that
RedAtlasClientforwards generated API calls to the expected endpoints with the expected params
Endpoints
For full details on parameters, request bodies, and responses, see the API documentation.
| Resource | Method | Endpoint |
|---|---|---|
| Data | client.data.data_market() |
GET /v1/data/{market} |
| Data | client.data.data_list() |
GET /v1/data/{market}/{entityType} |
| Data | client.data.data_get() |
GET /v1/data/{market}/{entityType}/{id} |
| Reports | client.reports.reports_list() |
GET /v1/reports |
| Reports | client.reports.reports_create() |
POST /v1/reports |
| Reports | client.reports.reports_create_avm() |
POST /v1/reports/avm |
| Reports | client.reports.reports_create_comparables() |
POST /v1/reports/comparables |
| Reports | client.reports.reports_get() |
GET /v1/reports/{id} |
| Reports | client.reports.reports_get_public() |
GET /v1/reports/public/{reportId} |
| Reports | client.reports.reports_get_white_label() |
GET /v1/reports/white-label |
| Reports | client.reports.reports_update_white_label() |
PUT /v1/reports/white-label |
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file redatlas-0.1.5.tar.gz.
File metadata
- Download URL: redatlas-0.1.5.tar.gz
- Upload date:
- Size: 85.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f27e000ce66dab2e6b8899d761d48b91585a88009d6c12260a19a2b327e82042
|
|
| MD5 |
3cef9369589b0efcffb5dc0ec5fb5efc
|
|
| BLAKE2b-256 |
cf6cfe3ae348190ca1c872a456b359730c1afdd14cdcc4f751e85bf7234c60ba
|
File details
Details for the file redatlas-0.1.5-py3-none-any.whl.
File metadata
- Download URL: redatlas-0.1.5-py3-none-any.whl
- Upload date:
- Size: 213.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c8cd17cf10b4ad53ab99dc5577eadef625f14fefb2901a340954c51354c8110
|
|
| MD5 |
a47bf4c783d8bc648fc37caeec2c6210
|
|
| BLAKE2b-256 |
3c0ca706c1a3df21e14510fb388e7f74f91c62e2c67d67379cecf3cbc3b5cd82
|