A Python package for fetching data from the IOM's Displacement Tracking Matrix (DTM).
Project description
Official Python Package for the Displacement Tracking Matrix (DTM) API
dtmapi
📑 Table of Contents
- About
- What's New in Version 3?
- How to Get an API Key
- Installation
- Quick Start
- API Versions
- Documentation
- Contributing
- License
- Contact
About
dtmapi is a Python package developed by Displacement Tracking Matrix (DTM). This package allows the humanitarian community, academia, media, government, and non-governmental organizations to utilize the data collected by DTM. It provides non-sensitive Internally Displaced Person (IDP) figures, aggregated at the country, Admin 1 (states, provinces, or equivalent), and Admin 2 (smaller subnational administrative areas) levels.
Please find more information about DTM API here.
What's New in Version 3?
Version 3 of the DTM Displacement API introduces a range of new data indicators and improvements designed to enhance the analysis of internal displacement patterns. These enhancements aim to provide deeper insight into the dynamics of displacement by incorporating more granular and meaningful data points.
Key improvements include:
- Origin of Displacement Identify the geographical origin or location where displacement began, offering better tracking of movement patterns.
- Gender Disaggregation Access disaggregated data by gender to support more inclusive and targeted humanitarian responses.
- Reason for Displacement Understand the primary causes of displacement, including conflict, disasters, and other drivers.
These new indicators help improve planning, policy-making, and response strategies for stakeholders working with displacement data.
How to Get a Subscription API Key
⚠️ Important: Access to the DTM API requires a personal API subscription key. Never share your API key or commit it to version control.
-
Go to the DTM API Registration Portal: https://dtm-apim-portal.iom.int/
-
Sign up or log in with personal details such as name, email, job title, and organization.
-
In the APIs section, select API-V3.
-
Click Subscribe. A subscription name is requested - choose a meaningful name for identification.
-
Once the subscription is activated, the API key can be accessed under the Profile section in the top menu bar.
- The Primary key shown there serves as your personal API KEY.
- The available endpoints for this API version are also listed.
-
Copy and store your API key securely. It is required for authenticating all requests.
💡 Tip: Use environment variables to store your API key instead of hardcoding it in your scripts.
Installation
dtmapi is available on PyPI. Install it using pip:
pip install dtmapi
Quick Start
Here's a complete example to get you started:
from dtmapi import DTMApi
# Initialize the API client with your subscription key
api = DTMApi(subscription_key="YOUR-API-KEY-HERE")
# Get all available countries
all_countries = api.get_all_countries()
all_countries.head()
# Get all operations
all_operations = api.get_all_operations()
all_operations.head()
# Get IDP Admin 0 (country-level) data for Ethiopia, rounds 1-10
idp_admin0_data = api.get_idp_admin0_data(
CountryName='Ethiopia',
FromRoundNumber=1,
ToRoundNumber=10
)
idp_admin0_data.head()
# Get IDP Admin 1 (state/province-level) data with date filtering
idp_admin1_data = api.get_idp_admin1_data(
CountryName='Sudan',
Admin1Name="Blue Nile",
FromReportingDate='2020-01-01',
ToReportingDate='2024-08-15'
)
idp_admin1_data.head()
# Get IDP Admin 2 (district-level) data by operation
idp_admin2_data = api.get_idp_admin2_data(
Operation="Displacement due to conflict",
CountryName='Lebanon'
)
idp_admin2_data.head()
API Versions
📌 Recommended: Use v3 for all new projects. It includes enhanced demographic data and displacement context.
The DTM API supports two versions: v3 (current) and v2 (legacy). The package defaults to v3, which is recommended for all new projects.
Version Differences
| Feature | v2 (Legacy) | v3 (Current) |
|---|---|---|
| IDP Admin 0, 1, 2 Data | ✅ | ✅ |
| Country List | ✅ | ✅ |
| Operation List | ✅ | ✅ |
| Gender/Sex Disaggregation | ❌ | ✅ |
| Origin of Displacement | ❌ | ✅ |
| Displacement Reason | ❌ | ✅ |
| Status | Legacy | Current |
Using API v3 (Default - Recommended)
API v3 includes enhanced demographic data (gender disaggregation) and displacement context (origin, reason). This is the default version.
from dtmapi import DTMApi
# v3 is default - no need to specify api_version
api = DTMApi(subscription_key="YOUR-API-KEY-HERE")
# Or explicitly specify v3
api = DTMApi(subscription_key="YOUR-API-KEY-HERE", api_version="v3")
# Fetch data with demographic disaggregation
data = api.get_idp_admin0_data(CountryName="Ethiopia")
# Returns data WITH gender, origin, and reason fields
Using API v2 (Legacy)
API v2 is available for historical data consistency or when you need to compare with older datasets. It does not include the demographic enhancements introduced in v3.
from dtmapi import DTMApi
# Specify v2 for legacy data format
api_v2 = DTMApi(subscription_key="YOUR-API-KEY-HERE", api_version="v2")
# Fetch data in legacy format
data = api_v2.get_idp_admin0_data(CountryName="Ethiopia")
# Returns data WITHOUT demographic disaggregation (v2 format)
Comparing Versions
You can use both versions in the same script for comparison:
from dtmapi import DTMApi
# Create separate instances for each version
api_v3 = DTMApi(subscription_key="YOUR-KEY", api_version="v3")
api_v2 = DTMApi(subscription_key="YOUR-KEY", api_version="v2")
# Fetch same data from both versions
data_v3 = api_v3.get_idp_admin0_data(CountryName="Syria", FromRoundNumber=1, ToRoundNumber=5)
data_v2 = api_v2.get_idp_admin0_data(CountryName="Syria", FromRoundNumber=1, ToRoundNumber=5)
# Compare columns - v3 includes additional demographic fields
data_v3.columns.tolist()
data_v2.columns.tolist()
When to Use Each Version
-
Use v3 (recommended):
- For all new projects
- When you need demographic disaggregation (gender)
- When you need displacement context (origin, reason)
- For the most current and complete data
-
Use v2 (legacy):
- When maintaining existing code that depends on v2 data structure
- For historical comparisons with pre-v3 datasets
- When integrating with systems expecting v2 format
Documentation
Comprehensive documentation is available at dtmapi.readthedocs.io.
Contributing
We welcome contributions from the community! The source code for dtmapi is available on GitHub.
Feel free to:
- Star the repository
- Report bugs or issues
- Suggest new features
- Submit pull requests
License
This project is licensed under the MIT License. See the LICENSE file for details.
Contact
For any questions or feedback, please reach out to us at dtmdataconsolidation@iom.int.
Project details
Release history Release notifications | RSS feed
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 dtmapi-0.1.8.tar.gz.
File metadata
- Download URL: dtmapi-0.1.8.tar.gz
- Upload date:
- Size: 23.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5b8cb3cfc77f9aef0fbc22e167c1428e6940fb0acadbd7e8a233e0d1e063c3ae
|
|
| MD5 |
7342c61f9e00ac2fc37622c07792650b
|
|
| BLAKE2b-256 |
69813dd2660436be13f4f0b5ba6a0f04aec5d595848b858f3328d9aa2205e842
|
File details
Details for the file dtmapi-0.1.8-py3-none-any.whl.
File metadata
- Download URL: dtmapi-0.1.8-py3-none-any.whl
- Upload date:
- Size: 17.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e5513e1593df80db035d8a459068d18cfefe4b1d6fedc48c8e5d0ac2af8aeb8c
|
|
| MD5 |
d99a9d7f416a7eadb7ad0bb858761cde
|
|
| BLAKE2b-256 |
344f377f2d2f2b2238027783b1694ad361d2ca0a85db4a5e15af58f7ffce8410
|