Meta Users API

Operations on the User node

Operations 5

GET /me Meta Get current user #
GET /{user-id} Meta Read user profile #
POST /{user-id} Meta Update user profile #
DELETE /{user-id} Meta Delete test user #
GET /{user-id}/feed Meta Get user feed #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/meta-users-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

meta-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Meta Users API
  version: v22.0
  description: 'Operations tagged Users across 2 of this provider''s published API definitions: meta-openapi.yml, meta-users-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://graph.facebook.com/v22.0
  description: Meta Graph API
security:
- userAccessToken: []
tags:
- name: Users
  description: Operations on the User node
paths:
  /me:
    servers:
    - url: https://graph.facebook.com/v22.0
      description: Meta Graph API
    get:
      operationId: getMe
      summary: Meta Get current user
      description: Retrieves the User node for the user associated with the access token.
      tags:
      - Users
      parameters:
      - name: fields
        in: query
        description: Comma-separated list of fields to return.
        schema:
          type: string
      responses:
        '200':
          description: User profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '401':
          description: Invalid access token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /{user-id}:
    parameters:
    - name: user-id
      in: path
      required: true
      description: ID of the user.
      schema:
        type: string
    servers:
    - url: https://graph.facebook.com/v22.0
      description: Meta Graph API
    get:
      operationId: getUser
      summary: Meta Read user profile
      description: Retrieves fields and edges for a User node.
      tags:
      - Users
      parameters:
      - name: fields
        in: query
        description: Comma-separated list of fields to return.
        schema:
          type: string
      responses:
        '200':
          description: User profile
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/User'
        '404':
          description: User not found
    post:
      operationId: updateUser
      summary: Meta Update user profile
      description: Updates user information such as name, emoji color preference, or local news settings. Supports read-after-write.
      tags:
      - Users
      requestBody:
        content:
          application/json:
            schema:
              type: object
              additionalProperties: true
      responses:
        '200':
          description: Update successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
    delete:
      operationId: deleteUser
      summary: Meta Delete test user
      description: Removes a test user account from the system.
      tags:
      - Users
      responses:
        '200':
          description: Deletion successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessResponse'
  /{user-id}/feed:
    parameters:
    - name: user-id
      in: path
      required: true
      description: ID of the user.
      schema:
        type: string
    servers:
    - url: https://graph.facebook.com/v22.0
      description: Meta Graph API
    get:
      operationId: getUserFeed
      summary: Meta Get user feed
      description: Retrieves the feed of posts published by or on the user's timeline.
      tags:
      - Users
      responses:
        '200':
          description: Feed list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagedList'
components:
  schemas:
    Error:
      type: object
      properties:
        error:
          type: object
          properties:
            message:
              type: string
            type:
              type: string
            code:
              type: integer
    PagedList:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
        paging:
          type: object
          properties:
            cursors:
              type: object
              properties:
                before:
                  type: string
                after:
                  type: string
            next:
              type: string
            previous:
              type: string
    SuccessResponse:
      type: object
      properties:
        success:
          type: boolean
    User:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        email:
          type: string
        picture:
          type: object
  securitySchemes:
    userAccessToken:
      type: oauth2
      flows:
        implicit:
          authorizationUrl: https://www.facebook.com/v22.0/dialog/oauth
          scopes:
            public_profile: Access basic profile info
externalDocs:
  description: Meta Graph API User Reference
  url: https://developers.facebook.com/docs/graph-api/reference/user/
x-refined-from:
- meta-openapi.yml
- meta-users-api-openapi.yml
x-generated-from: https://developers.facebook.com/docs/graph-api/reference/user/
x-generated-by: claude-crawl-2026-05-08