---
title: "Organization profile"
method: GET
path: "/api/v1/hdx/organization/{id}"
tags: ["Global Economy & Trade"]
---

# Organization profile

`GET /api/v1/hdx/organization/{id}`

Fetch a contributing organization profile by slug or UUID. Returns `package_count`, organization metadata (name, URL, logo), and optionally the list of datasets they publish when `include_datasets=true`.

## Path parameters

- `id` string, required — Organization slug or UUID.

## Query parameters

- `include_datasets` boolean — When true, embed the organization's datasets in the response (can be large).

## Response `200`

Organization profile with package count and (optional) attached datasets.

- EnvelopeHdxOrganizationPayload
  - `data` HdxOrganizationPayload, required — Response payload for `/api/v1/hdx/organization/{id}`.
    - `organization` HdxOrganization, required — Full organization profile returned by `organization_show`.
      - `id` string, nullable — Organization UUID.
      - `name` string, nullable — Organization slug.
      - `title` string, nullable — Organization display title.
      - `display_name` string, nullable — Display-ready name used on upstream UI.
      - `description` string, nullable — Organization description.
      - `org_url` string, nullable — Organization website URL.
      - `org_acronym` string, nullable — Short organization acronym.
      - `image_url` string, nullable — Logo URL.
      - `image_display_url` string, nullable — Display-ready logo URL.
      - `created` string, nullable — Organization creation timestamp (ISO 8601).
      - `modified_at` string, nullable — Organization last-modified timestamp (ISO 8601).
      - `package_count` integer, nullable — Number of datasets published by this organization.
      - `num_followers` integer, nullable — Number of followers on the upstream portal.
      - `hdx_org_type` string, nullable — HDX organization type (UN, NGO, academic, private, government).
      - `approval_status` string, nullable — Approval status.
      - `state` string, nullable — Active / deleted state.
      - `packages` object[], nullable — Attached datasets when `include_datasets=true` was requested; otherwise omitted or empty.
  - `meta` SugraMeta, required — Metadata attached to every /api/v1/* response envelope.
    - `endpoint` string, required — Requested endpoint path.
    - `data_time` string, required — ISO 8601 UTC timestamp of the source data, not of the request.
    - `response_time` string, required — ISO 8601 UTC timestamp when this response was produced.
    - `provider` string, required — API name and version.
    - `source` string, nullable — Identifier of the primary upstream source used for this response.
    - `attribution` string, nullable — Human-readable attribution mandated by an upstream source (e.g. a securities regulator or self-regulatory organization). Present only on responses whose source requires the owner and source to be clearly identified. Do not remove or alter it when using the response.
    - `fallback_used` boolean, nullable — True when the primary source failed and a fallback produced the data.
    - `fallback_chain` string[], nullable — Ordered list of sources attempted, in the order they were tried.
    - `cached` boolean, nullable — True when this response was served from the internal cache.
    - `stale` boolean, nullable — True when the cached response was returned after the upstream rate-limited or errored. Clients can use this to detect degraded data.

## Other responses

- `401` — Missing or invalid `x-api-key` header.
- `422` — Validation Error
- `429` — Daily rate limit exceeded. Check `X-RateLimit-Reset` for the next window.
- `503` — Upstream source is temporarily unavailable. Retry after a short delay.

---

[API](https://skmtc.net/sugra/apis/sugra-api.md) · [All operations](https://skmtc.net/sugra/apis/sugra-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sugra/sugra-api/versions/dcf7427e6897/schema)
