Skip to main content

A Python package for fetching data from the IOM's Displacement Tracking Matrix (DTM).

Project description

DTM Logo

Official Python Package for the Displacement Tracking Matrix (DTM) API


dtmapi

PyPI License

📑 Table of Contents

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.

  1. Go to the DTM API Registration Portal: https://dtm-apim-portal.iom.int/

  2. Sign up or log in with personal details such as name, email, job title, and organization.

  3. In the APIs section, select API-V3.

  4. Click Subscribe. A subscription name is requested - choose a meaningful name for identification.

  5. 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.
  6. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dtmapi-0.1.6.tar.gz (23.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dtmapi-0.1.6-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file dtmapi-0.1.6.tar.gz.

File metadata

  • Download URL: dtmapi-0.1.6.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

Hashes for dtmapi-0.1.6.tar.gz
Algorithm Hash digest
SHA256 6c8c2933711e92af617eac482a7ea12e1917c504752d658d358ca3dbb6882bd4
MD5 085111485b2853db4f9b60156cff3590
BLAKE2b-256 57d0cf9124f04174bd2e543c36842f1ddd8037418865ebf68ed873adeb0d8735

See more details on using hashes here.

File details

Details for the file dtmapi-0.1.6-py3-none-any.whl.

File metadata

  • Download URL: dtmapi-0.1.6-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

Hashes for dtmapi-0.1.6-py3-none-any.whl
Algorithm Hash digest
SHA256 ac446ed897f53ecfc912881245fbbcbdcf09eaad5ab4c8b5a2195d9a66d62746
MD5 fd9f9872fcd0771b6b492f18fdd1c836
BLAKE2b-256 530b77af958d0244906a5bff82225ed4bed2cd1d9235ba55e95a9bacbd12ba58

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page