Meta · Arazzo Workflow

Meta Audit Current User

Version 1.0.0

Resolve the current user, read their full profile node, then pull their feed.

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

Provider

meta

Workflows

audit-current-user
Snapshot the authenticated user's identity, profile, and feed.
Resolves the user id, reads the profile node with the requested fields, and retrieves the feed edge.
3 steps inputs: accessToken, fields outputs: name, posts, userId
1
getCurrentUser
Resolve the authenticated user's id from the access token.
2
readProfile
Read the full User node for the resolved id with the requested fields.
3
getFeed
Retrieve the feed of posts for the resolved user.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Meta Audit Current User
  summary: Resolve the current user, read their full profile node, then pull their feed.
  description: >-
    A three-step audit of the authenticated user. It resolves the user id with
    /me, reads the full User node with an explicit field list, and then
    retrieves the user's feed. The result is a compact snapshot of who the token
    belongs to and what they have recently published. 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: audit-current-user
  summary: Snapshot the authenticated user's identity, profile, and feed.
  description: >-
    Resolves the user id, reads the profile node with the requested fields, and
    retrieves the feed edge.
  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.
  steps:
  - stepId: getCurrentUser
    description: >-
      Resolve the authenticated user's id from the access token.
    operationId: getMe
    parameters:
    - name: access_token
      in: query
      value: $inputs.accessToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userId: $response.body#/id
  - stepId: readProfile
    description: >-
      Read the full User node for the resolved id with the requested fields.
    operationId: getUser
    parameters:
    - name: user-id
      in: path
      value: $steps.getCurrentUser.outputs.userId
    - name: fields
      in: query
      value: $inputs.fields
    - name: access_token
      in: query
      value: $inputs.accessToken
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      name: $response.body#/name
      email: $response.body#/email
  - stepId: getFeed
    description: >-
      Retrieve the feed of posts for the resolved user.
    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
  outputs:
    userId: $steps.getCurrentUser.outputs.userId
    name: $steps.readProfile.outputs.name
    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-audit-current-user-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.