Graph API Version

/threat_exchange_members

Returns a list of current members of the ThreatExchange, alphabetized by application name. Each application may also include an optional contact email address. You can set this address, if desired, under the settings panel for your application. See here.

Parameters

The following query parameters are supported:

  • app_ids - A list of ids to fetch specific members
  • me - A boolean field, if you set me=1 this endpoint will only return the member corresponding to the caller
  • fields - A list of fields to return in the response

Example query:

curl \
  -F 'access_token=<ACCESS_TOKEN>' \
  https://graph.facebook.com/v24.0/threat_exchange_members?fields=name
  

Open In Graph API Explorer

Data returned:

{
  "data": [
    {
      "id": "316842935455502",
      "name": "Meta ThreatExchange"
    },
    {
      "id": "518449695738570",
      "name": "Meta TX E2E Testing"
    },

    ...
  ]
}

Determining which member you are currently acting as:

curl \
  -F 'access_token=<ACCESS_TOKEN>' \
  https://graph.facebook.com/v24.0/threat_exchange_members?me=1&fields=name
  

Open In Graph API Explorer

Data returned:

{
  "data": [
    {
      "id": "316842935455502",
      "name": "Meta ThreatExchange"
    }
  ]
}