Meta · Arazzo Workflow

Meta Get Current User Feed

Version 1.0.0

Resolve the current user from the access token and read their timeline feed.

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

Provider

meta

Workflows

get-current-user-feed
Resolve the current user and return their feed of posts.
Calls the /me node to discover the authenticated user's id, then retrieves the feed edge for that user.
2 steps inputs: accessToken, fields outputs: posts, userId
1
getCurrentUser
Read the User node associated with the access token to discover the authenticated user's id.
2
getFeed
Retrieve the feed of posts published by or on the resolved user's timeline.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Meta Get Current User Feed
  summary: Resolve the current user from the access token and read their timeline feed.
  description: >-
    Identifies the user behind the supplied access token with the /me node and
    then reads that user's feed of timeline posts. Because the Graph API feed
    edge is keyed by user id, the workflow first resolves the id rather than
    assuming the caller already knows it. 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: get-current-user-feed
  summary: Resolve the current user and return their feed of posts.
  description: >-
    Calls the /me node to discover the authenticated user's id, then retrieves
    the feed edge for that user.
  inputs:
    type: object
    required:
    - accessToken
    properties:
      accessToken:
        type: string
        description: A Meta Graph API user access token.
      fields:
        type: string
        description: Comma-separated list of user fields to return (e.g. "id,name").
  steps:
  - stepId: getCurrentUser
    description: >-
      Read the User node associated with the access token to discover the
      authenticated user's id.
    operationId: getMe
    parameters:
    - name: access_token
      in: query
      value: $inputs.accessToken
    - name: fields
      in: query
      value: $inputs.fields
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userId: $response.body#/id
      name: $response.body#/name
  - stepId: getFeed
    description: >-
      Retrieve the feed of posts published by or on the resolved user's
      timeline.
    operationId: getUserFeed
    parameters:
    - name: user-id
      in: path
      value: $steps.getCurrentUser.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.getCurrentUser.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-get-current-user-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.