---
title: "Global Fields"
description: "Global Fields"
url: "https://www.contentstack.com/docs/developers/sdks/content-delivery-sdk/python/reference/global-fields"
product: "Contentstack"
doc_type: "guide"
audience:
  - developers
  - admins
version: "current"
last_updated: "2026-09-13"
---

# Global Fields

## Global Fields

A [Global field](/docs/headless-cms/about-global-field/) is a reusable field or group of fields that you define once and reuse across any content type in your stack. This helps you avoid recreating the same set of fields multiple times, saving time and effort.

## fetch

The fetch method retrieves data for the specified global field.

```
Example:

import contentstack
stack = contentstack.Stack('api_key', 'delivery_token', 'environment')
global_field = stack.global_field('global_field_uid')
response = global_field.fetch()
```

## find

The find method retrieves all global fields in the stack.

```
Example:
import contentstack
stack = contentstack.Stack('api_key', 'delivery_token', 'environment')
some_dict = {'abc':'something'}
global_field = stack.global_field('global_field_uid')
response = global_field.find(param=some_dict)
```

## Global Fields | Python Delivery SDK | Contentstack

Global Fields in the Python Delivery SDK are reusable fields defined once and reused across content types, saving time when modeling content in Contentstack.