Skip to main content
GET
/
v1
/
condition_sets
/
{condition_set_id}
/
condition_set_items
/
{condition_set_item_id}
Get Condition Set Item
curl --request GET \
  --url https://api.privy.io/v1/condition_sets/{condition_set_id}/condition_set_items/{condition_set_item_id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'privy-app-id: <privy-app-id>'
{
  "id": "abc123xyz456def789ghi012",
  "condition_set_id": "qvah5m2hmp9abqlxdmfiht95",
  "value": "0x742d35Cc6634C0532925a3b844Bc9e7595f0bEb",
  "created_at": 1761271537642
}

Documentation Index

Fetch the complete documentation index at: https://docs.privy.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Basic Auth header with your app ID as the username and your app secret as the password.

Headers

privy-app-id
string
required

ID of your Privy app.

Path Parameters

condition_set_id
string
required
Required string length: 24
condition_set_item_id
string
required
Required string length: 24

Response

200 - application/json

Success response.

A single item in a condition set.

id
string
required

Unique ID of the created condition set item.

Required string length: 24
condition_set_id
string
required

Unique ID of the condition set this item belongs to.

Required string length: 24
value
string
required

The value stored in this condition set item.

created_at
number
required

Unix timestamp of when the condition set item was created in milliseconds.