Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.
get_api_artifactsOne API's artifacts, grouped by type.
get_openapiThe primary OpenAPI for this API.
find_similar_apisAPIs that look like this one.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools →
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/adobe-suite-data-elements-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no email required.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Reactor Data elements API
description: "Use the Reactor API to programmatically manage resources and develop tag extensions in Adobe Experience Platform.\n**Related documentation**:\n * [Tags overview and UI documentation](https://adobe.com/go/launch_help_en)\n * [Reactor API guides](https://adobe.com/go/reactor-api-overview)\n\n**API paths**:\n * Reactor Gateway URL: https://<span>reactor.adobe.io\n * Example of a complete path for making a call to `/properties`: https://<span>reactor.adobe.io/properties\n\n**Required headers**:\n * All calls require the headers `Authorization`, `x-gw-ims-org-id`, and `x-api-key`. For more information on how to obtain these values, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).\n * All GET requests to the Reactor API require an `Accept` header to determine what data is returned by the system. In most cases, this value will be `application/vnd.api+json;revision=#` (where `#` is the revision number of the resource you want to retrieve, e.g. `1`).\n * All requests with a payload in the request body (such as POST, PUT, and PATCH calls) must include the header `Content-Type`. The specific `Content-Type` value for each call is provided in the parameters sections in the endpoints listed below.\n\n- **API error handling**:\n - Refer to the Experience Platform API troubleshooting guide for [FAQs](https://experienceleague.adobe.com/docs/experience-platform/landing/troubleshooting.html#faq), [API status codes](https://experienceleague.adobe.com/docs/experience-platform/landing/troubleshooting.html#api-status-codes), and [request header errors](https://experienceleague.adobe.com/docs/experience-platform/landing/troubleshooting.html#request-header-errors)."
version: '1.0'
servers:
- url: //reactor.adobe.io
tags:
- name: Data elements
description: A data element functions as a variable which points to an important piece of data within your application. Data elements are used within rules and extension configurations. When the rule is triggered at runtime in a browser or an application, the value of the data element is resolved and used within the rule.
paths:
/properties/{PROPERTY_ID}/data_elements:
get:
tags:
- Data elements
summary: List a property's data elements
description: '>**NOTE**: For more information on using this operation, see the [data elements endpoint guide](https://experienceleague.adobe.com/docs/experience-platform/tags/api/endpoints/data-elements.html) on Experience League.'
operationId: listPropertyDataElements
parameters:
- name: PROPERTY_ID
in: path
description: The ID of the property whose data elements you want to list.
required: true
schema:
type: string
- name: Authorization
in: header
description: The access token generated using your Organization ID, Client ID, and JavaScript Web Token (JWT), prefixed with `bearer`. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-api-key
in: header
description: The Client ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-gw-ims-org-id
in: header
description: The Organization ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: Accept
in: header
description: All GET requests must include this header with the value of `application/vnd.api+json;revision=#` (where `#` is the revision number of the resource you want to retrieve, e.g. `1`).
required: true
schema:
type: string
- name: page[size]
in: query
description: Limits the number of results per page (for example, `page[size]=50`). Can be used in conjunction with `page[number]` to manage response pagination.
schema:
maximum: 100
type: integer
default: 25
- name: page[number]
in: query
description: 'The page index to return for the listing response (for example, `page[number]=2`). Can be used in conjunction with `page[size]` to manage response pagination.
>**NOTE**: Responses for listing calls contain a `meta.pagination` object which contains the indexes for the current, previous, and next pages in the response. To access these pages, use their index values for this parameter in subsequent API calls.'
schema:
type: integer
default: 1
- name: created_at
in: query
description: Filter by `created_at` timestamp.
schema:
type: string
- name: updated_at
in: query
description: Filter by `updated_at` timestamp.
schema:
type: string
- name: published_at
in: query
description: Filter by `published_at` timestamp.
schema:
type: string
- name: published
in: query
description: Filter by `published` status.
schema:
type: string
- name: enabled
in: query
description: Filter by `enabled`.
schema:
type: string
- name: name
in: query
description: Filter by `name`.
schema:
type: string
- name: origin_id
in: query
description: Filter by `origin_id`.
schema:
type: string
- name: revision_number
in: query
description: Filter by `revision_number`.
schema:
type: string
responses:
'200':
x-summary: Success
description: A successful response returns an array of data elements belonging to the specified property.
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/dataElementsListResponse'
post:
tags:
- Data elements
summary: Create a data element
description: '>**NOTE**: For more information on using this operation, see the [data elements endpoint guide](https://experienceleague.adobe.com/docs/experience-platform/tags/api/endpoints/data-elements.html) on Experience League.'
operationId: createDataElement
parameters:
- name: PROPERTY_ID
in: path
description: The ID of the property that you want to create a data element for.
required: true
schema:
type: string
- name: Authorization
in: header
description: The access token generated using your Organization ID, Client ID, and JavaScript Web Token (JWT), prefixed with `bearer`. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-api-key
in: header
description: The Client ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-gw-ims-org-id
in: header
description: The Organization ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: Content-Type
in: header
description: This header must be provided with a value of `application/vnd.api+json` on all requests that contain a JSON payload.
required: true
schema:
type: string
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/dataElementsCreatePayload'
required: true
responses:
'201':
x-summary: Success
description: A successful response returns the details of the newly created data element.
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/dataElementsCreateResponse'
x-codegen-request-body-name: body
/data_elements/{DATA_ELEMENT_ID}:
get:
tags:
- Data elements
summary: Retrieve a data element
description: '>**NOTE**: For more information on using this operation, see the [data elements endpoint guide](https://experienceleague.adobe.com/docs/experience-platform/tags/api/endpoints/data-elements.html) on Experience League.'
operationId: retrieveDataElement
parameters:
- name: DATA_ELEMENT_ID
in: path
description: The ID of the data element you want to look up.
required: true
schema:
type: string
- name: Authorization
in: header
description: The access token generated using your Organization ID, Client ID, and JavaScript Web Token (JWT), prefixed with `bearer`. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-api-key
in: header
description: The Client ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-gw-ims-org-id
in: header
description: The Organization ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: Accept
in: header
description: All GET requests must include this header with the value of `application/vnd.api+json;revision=#` (where `#` is the revision number of the resource you want to retrieve, e.g. `1`).
required: true
schema:
type: string
responses:
'200':
x-summary: Success
description: A successful response returns the details of the data element.
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/dataElementsLookupResponse'
patch:
tags:
- Data elements
summary: Update a data element
description: 'When updating a data element, its ID must be provided in both the request path and the request payload. These IDs must match in order for the call to be successful.
You can also create a new revision of the data element which is assigned its own ID. The original data element may be discovered via the origin link. Revising a data element is achieved by supplying a `meta` attribute containing an `action` property with the value `revise`. Excluding this property will update the current revision of the data element without creating a new one.
>**NOTE**: For more information on using this operation, see the [data elements endpoint guide](https://experienceleague.adobe.com/docs/experience-platform/tags/api/endpoints/data-elements.html) on Experience League.'
operationId: updateDataElement
parameters:
- name: DATA_ELEMENT_ID
in: path
description: The ID of the data element you want to update.
required: true
schema:
type: string
- name: Authorization
in: header
description: The access token generated using your Organization ID, Client ID, and JavaScript Web Token (JWT), prefixed with `bearer`. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-api-key
in: header
description: The Client ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-gw-ims-org-id
in: header
description: The Organization ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: Content-Type
in: header
description: This header must be provided with a value of `application/vnd.api+json` on all requests that contain a JSON payload.
required: true
schema:
type: string
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/dataElementsUpdatePayload'
required: true
responses:
'200':
x-summary: Success
description: A successful response returns the details of the updated data element or its new revision.
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/dataElementsUpdateResponse'
x-codegen-request-body-name: body
/data_elements/{DATA_ELEMENT_ID}/notes:
get:
tags:
- Data elements
summary: List a data element's notes
description: '>**NOTE**: For more information on using this operation, see the [notes endpoint guide](https://experienceleague.adobe.com/docs/experience-platform/tags/api/endpoints/notes.html) on Experience League.'
operationId: listDataElementNotes
parameters:
- name: DATA_ELEMENT_ID
in: path
description: The ID of the data element whose notes you want to list.
required: true
schema:
type: string
- name: Authorization
in: header
description: The access token generated using your Organization ID, Client ID, and JavaScript Web Token (JWT), prefixed with `bearer`. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-api-key
in: header
description: The Client ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-gw-ims-org-id
in: header
description: The Organization ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: page[size]
in: query
description: Limits the number of results per page (for example, `page[size]=50`). Can be used in conjunction with `page[number]` to manage response pagination.
schema:
maximum: 100
type: integer
default: 25
- name: page[number]
in: query
description: 'The page index to return for the listing response (for example, `page[number]=2`). Can be used in conjunction with `page[size]` to manage response pagination.
>**NOTE**: Responses for listing calls contain a `meta.pagination` object which contains the indexes for the current, previous, and next pages in the response. To access these pages, use their index values for this parameter in subsequent API calls.'
schema:
type: integer
default: 1
- name: created_at
in: query
description: Filter by `created_at` timestamp.
schema:
type: string
- name: updated_at
in: query
description: Filter by `updated_at` timestamp.
schema:
type: string
- name: text
in: query
description: Filter by `text`.
schema:
type: string
responses:
'200':
x-summary: Success
description: A successful response returns an array of notes belonging to the specified data element.
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/dataElementsNotesListResponse'
post:
tags:
- Data elements
summary: Create a note for a data element
description: '>**NOTE**: For more information on using this operation, see the [notes endpoint guide](https://experienceleague.adobe.com/docs/experience-platform/tags/api/endpoints/notes.html) on Experience League.'
operationId: createNote
parameters:
- name: DATA_ELEMENT_ID
in: path
description: The ID of the data element that you want to create a note for.
required: true
schema:
type: string
- name: Authorization
in: header
description: The access token generated using your Organization ID, Client ID, and JavaScript Web Token (JWT), prefixed with `bearer`. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-api-key
in: header
description: The Client ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: x-gw-ims-org-id
in: header
description: The Organization ID which can be copied from Adobe Developer Console. For more information on how to obtain this value, see the [authentication tutorial](http://www.adobe.com/go/launch-authentication-en).
required: true
schema:
type: string
- name: Content-Type
in: header
description: This header must be provided with a value of `application/vnd.api+json` on all requests that contain a JSON payload.
required: true
schema:
type: string
requestBody:
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/dataElementsNotesCreatePayload'
required: true
responses:
'201':
x-summary: Success
description: A successful response returns the details of the newly created note.
content:
application/vnd.api+json:
schema:
$ref: '#/components/schemas/dataElementsNotesCreateResponse'
x-codegen-request-body-name: body
components:
schemas:
relatedUpdatedWithExtension:
type: object
properties:
updated_with_extension:
type: object
properties:
links:
type: object
properties:
related:
type: string
description: A link that can be used in a subsequent API call to fetch the related extension.
description: Contains a `related` link that can be used in a subsequent API call to fetch the related extension.
data:
type: object
properties:
id:
type: string
description: The unique ID of the extension.
type:
type: string
description: The resource type for the extension (`extensions`).
description: Contains further information about the related extension.
description: Contains information about the extension that updated the resource, if applicable.
metaList:
type: object
properties:
meta:
type: object
properties:
pagination:
type: object
properties:
current_page:
type: integer
description: The current page of the response.
next_page:
type: integer
description: The next page of the response.
prev_page:
type: integer
description: The previous page of the response.
total_pages:
type: integer
description: The total number of pages in the response.
total_count:
type: integer
description: The total number of results in the response.
description: Contains pagination information about the list response.
description: Contains a `pagination` object that provides pagination information about the list response.
notesLookupResponse:
allOf:
- $ref: '#/components/schemas/dataLookup'
- type: object
properties:
data:
type: object
allOf:
- $ref: '#/components/schemas/notesEntity'
dataElementsUpdateResponse:
allOf:
- $ref: '#/components/schemas/dataElementsLookupResponse'
relatedResource:
type: object
properties:
resource:
type: object
properties:
links:
type: object
properties:
related:
type: string
description: A link that can be used in a subsequent API call to fetch the related resource.
description: Contains a `related` link that can be used in a subsequent API call to fetch the related resource.
data:
type: object
properties:
id:
type: string
description: The unique ID of the resource.
type:
type: string
description: The resource type.
description: Contains further information about the related resource.
description: Contains a link to the resource that that the note is attached to.
dataLookup:
type: object
properties:
data:
type: object
properties: {}
description: Contains the details of the resource.
dataElementsCreatePayload:
allOf:
- $ref: '#/components/schemas/dataCreateWithRelationships'
- type: object
properties:
data:
required:
- attributes
- relationships
type: object
properties:
attributes:
type: object
allOf:
- $ref: '#/components/schemas/dataElementsCreateAttributes'
relationships:
type: object
allOf:
- $ref: '#/components/schemas/dataElementsRelationships'
relatedProperty:
type: object
properties:
property:
type: object
properties:
links:
type: object
properties:
related:
type: string
description: A link that can be used in a subsequent API call to fetch the related property for the resource.
description: Contains a `related` link that can be used in a subsequent API call to fetch the related property for the resource.
data:
type: object
properties:
id:
type: string
description: The unique ID of the property.
type:
type: string
description: The resource type for the property (`properties`).
description: Contains further information about the related property.
description: Contains details about the property that owns the resource.
relatedOrigin:
type: object
properties:
origin:
type: object
properties:
links:
type: object
properties:
related:
type: string
description: A link that can be used in a subsequent API call to fetch the related origin.
description: Contains a `related` link that can be used in a subsequent API call to fetch the related origin.
data:
type: object
properties:
id:
type: string
description: The unique ID of the origin.
type:
type: string
description: The resource type for the origin.
description: Contains further information about the related origin.
description: Contains information about the resource's origin. The origin is the previous resource that was revised to make this resource.
relatedLibraries:
type: object
properties:
libraries:
type: object
properties:
links:
type: object
properties:
related:
type: string
description: A link that can be used in a subsequent API call to fetch the related libraries for the resource.
description: Contains a `related` link that can be used in a subsequent API call to fetch the related libraries for the resource.
description: Contains a link to the related libraries for the resource.
dataElementsCreateAttributes:
allOf:
- $ref: '#/components/schemas/dataElementsAttributes'
notesAttributes:
required:
- text
type: object
properties:
text:
type: string
description: The contents of the note.
dataElementsNotesCreatePayload:
allOf:
- $ref: '#/components/schemas/notesCreatePayload'
relatedUpdatedWithExtensionPackage:
type: object
properties:
updated_with_extension_package:
type: object
properties:
links:
type: object
properties:
related:
type: string
description: A link that can be used in a subsequent API call to fetch the related extension.
description: Contains a `related` link that can be used in a subsequent API call to fetch the related extension.
data:
type: object
properties:
id:
type: string
description: The unique ID of the extension.
type:
type: string
description: The resource type for the extension (`extensions`).
description: Contains further information about the related extension.
description: Contains information about the extension that updated the resource, if applicable.
dataList:
type: object
properties:
data:
type: array
description: Contains the results from the listing call.
items:
type: object
properties: {}
dataElementsAttributes:
type: object
properties:
name:
type: string
description: The name of the data element.
delegate_descriptor_id:
type: string
description: The [delegate descriptor ID](https://experienceleague.adobe.com/docs/experience-platform/tags/api/guides/delegate-descriptor-ids.html) for the data element.
clean_text:
type: boolean
description: Indicates whether the data element removes leading and trailing whitespace characters in text. This setting also converts any instances of two or more consecutive spaces in the middle of the text with just one space each.
default_value:
type: object
description: The default value of the data element. Returns `null` if no default value exists.
enabled:
type: boolean
description: Indicates whether this data element is enabled.
force_lower_case:
type: boolean
description: Indicates whether the data element converts string values to lowercase.
settings:
type: string
description: A custom settings JSON object represented as a string.
storage_duration:
type: string
description: 'The duration that the data element''s value will be persisted. This attribute is set to `null` by default, meaning the data element value will not persist at all. To implement storage, the following options are available:
* `pageview`: Data element values are held in a JavaScript variable inside the library. If the user navigates to a new page or refreshes the page, the value is discarded. * `session`: Data element values are persisted to session storage. When the browser tab is closed, the value is discarded. * `visitor`: Data element values are persisted to local storage. The value will be persisted indefinitely.'
enum:
- pageview
- session
- visitor
dataElementsCreateResponse:
allOf:
- $ref: '#/components/schemas/dataElementsLookupResponse'
dataElementsEntity:
allOf:
- $ref: '#/components/schemas/basicResourceProperties'
- type: object
properties:
attributes:
type: object
properties:
created_at:
type: string
description: A timestamp of when the data element was created in the system.
deleted_at:
type: string
description: A timestamp of when the data element was deleted from the system. Returns `null` if the data element still exists.
dirty:
type: boolean
description: Indicates whether changes have been made to the data element that have not been pushed to a library.
enabled:
type: boolean
description: Indicates whether this data element is enabled.
name:
type: string
description: The name of the data element.
published:
type: boolean
description: Indicates whether this data element has been published as part of a build.
published_at:
type: string
description: A timestamp of when the data element was published. Returns `null` if `published` is set to `false`.
updated_at:
type: string
description: A timestamp of when the data element was last updated.
clean_text:
type: boolean
description: Indicates whether the data element removes leading and trailing whitespace characters in text. This setting also converts any instances of two or more consecutive spaces in the middle of the text with just one space each.
default_value:
type: object
description: The default value of the data element. Returns `null` if no default value exists.
delegate_descriptor_id:
type: string
description: The [delegate descriptor ID](https://experienceleague.adobe.com/docs/experience-platform/tags/api/guides/delegate-descriptor-ids.html) for the data element.
force_lower_case:
type: boolean
description: Indicates whether the data element converts string values to lowercase.
settings:
type: string
description: A custom settings JSON object represented as a string.
storage_duration:
type: string
description: 'The duration that the data element''s value will be persisted. This attr
# --- truncated at 32 KB (44 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/adobe-suite/refs/heads/main/openapi/adobe-suite-data-elements-api-openapi.yml