Meta · Arazzo Workflow

Meta Read User Then Feed

Version 1.0.0

Read a specific user's profile and then pull their timeline feed.

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

Provider

meta

Workflows

read-user-then-feed
Confirm a user exists, then return their feed of posts.
Reads the User node for the supplied id and, on success, retrieves the feed edge for the same user.
2 steps inputs: accessToken, fields, userId outputs: posts, userId
1
readUser
Read the User node for the supplied id, returning the requested fields.
2
getFeed
Retrieve the feed of posts for the confirmed user.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Meta Read User Then Feed
  summary: Read a specific user's profile and then pull their timeline feed.
  description: >-
    Given a known user id, reads the User node to confirm the user exists and
    capture display fields, then retrieves that user's feed edge. The profile
    read acts as an existence and access check 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-then-feed
  summary: Confirm a user exists, then return their feed of posts.
  description: >-
    Reads the User node for the supplied id and, on success, retrieves the feed
    edge for the same user.
  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 user to read.
      fields:
        type: string
        description: Comma-separated list of user fields to return.
  steps:
  - stepId: readUser
    description: >-
      Read the User node for the supplied id, returning the requested 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:
      userId: $response.body#/id
      name: $response.body#/name
  - stepId: getFeed
    description: >-
      Retrieve the feed of posts for the confirmed user.
    operationId: getUserFeed
    parameters:
    - name: user-id
      in: path
      value: $steps.readUser.outputs.userId
    - name: access_token
      in: query
      value: $inputs.accessToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      posts: $response.body#/data
      nextCursor: $response.body#/paging/cursors/after
  outputs:
    userId: $steps.readUser.outputs.userId
    posts: $steps.getFeed.outputs.posts

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-then-feed-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.