Meta · Arazzo Workflow

Meta Read User Feed And Identity

Version 1.0.0

Read a target user's feed and resolve the caller's own identity for context.

1 workflow 1 source API 1 provider
View Spec View on GitHub AdvertisingAnalyticsArtificial IntelligenceMessagingSocialSocial-MediaVirtual RealityArazzoWorkflows

Provider

meta

Workflows

read-user-feed-and-identity
Read a target user and feed, then resolve the caller's own identity.
Reads the target user node and feed, then calls /me to capture the authenticated caller's id for comparison.
3 steps inputs: accessToken, fields, userId outputs: callerId, posts, targetId
1
readTarget
Read the target User node to confirm access and capture display fields.
2
targetFeed
Retrieve the target user's feed of posts.
3
resolveCaller
Resolve the authenticated caller's own identity for context.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Meta Read User Feed And Identity
  summary: Read a target user's feed and resolve the caller's own identity for context.
  description: >-
    Pulls a target user's profile and feed, then resolves the caller's own
    identity via /me so a consumer can compare the target against the
    authenticated user. The profile read up front confirms access to the target
    before the feed pull. Every step inlines its request so the flow can be read
    and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: usersApi
  url: ../openapi/meta-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: read-user-feed-and-identity
  summary: Read a target user and feed, then resolve the caller's own identity.
  description: >-
    Reads the target user node and feed, then calls /me to capture the
    authenticated caller's id for comparison.
  inputs:
    type: object
    required:
    - accessToken
    - userId
    properties:
      accessToken:
        type: string
        description: A Meta Graph API user access token.
      userId:
        type: string
        description: The id of the target user to read.
      fields:
        type: string
        description: Comma-separated list of user fields to return.
  steps:
  - stepId: readTarget
    description: >-
      Read the target User node to confirm access and capture display fields.
    operationId: getUser
    parameters:
    - name: user-id
      in: path
      value: $inputs.userId
    - name: fields
      in: query
      value: $inputs.fields
    - name: access_token
      in: query
      value: $inputs.accessToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      targetId: $response.body#/id
      targetName: $response.body#/name
  - stepId: targetFeed
    description: >-
      Retrieve the target user's feed of posts.
    operationId: getUserFeed
    parameters:
    - name: user-id
      in: path
      value: $steps.readTarget.outputs.targetId
    - name: access_token
      in: query
      value: $inputs.accessToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      posts: $response.body#/data
  - stepId: resolveCaller
    description: >-
      Resolve the authenticated caller's own identity for context.
    operationId: getMe
    parameters:
    - name: access_token
      in: query
      value: $inputs.accessToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      callerId: $response.body#/id
  outputs:
    targetId: $steps.readTarget.outputs.targetId
    posts: $steps.targetFeed.outputs.posts
    callerId: $steps.resolveCaller.outputs.callerId

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/meta-read-user-feed-and-identity-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.