> ## Documentation Index
> Fetch the complete documentation index at: https://agnt.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Facebook Group Metadata Details

> Get group metadata details (name, id, url, image). Use group_id to retrieve specific group information.



## OpenAPI

````yaml /openapi/facebook.openapi.json get /v1/data/facebook/get_facebook_group_metadata_details
openapi: 3.0.0
info:
  title: agntdata Facebook API
  description: >-
    Unlock Facebook data effortlessly with our powerful scraping tools. Extract
    page names, URLs, contact info, likes, followers, posts, comments,
    Marketplace listings, and meta ads metrics. Perfect for market research,
    trend analysis, and optimizing marketing strategies.
  version: 1.0.0
  contact:
    name: agntdata
    url: https://agntdata.dev
servers:
  - url: https://api.agntdata.dev
    description: agntdata API
security:
  - ApiKeyAuth: []
tags:
  - name: Facebook Marketplace Listings
    description: ''
  - name: Facebook Posts Details
    description: ''
  - name: Facebook Search
    description: >-
      The Facebook Search API group provides a comprehensive set of endpoints to
      perform various types of searches across Facebook data, including posts,
      pages, people, and places. These endpoints enable users to retrieve
      targeted information based on specific query parameters and filters such
      as location, user identifiers, and other relevant attributes.
  - name: Meta Ads Library Search
    description: >-
      The Meta Ads Library Search allows you to search and retrieve detailed
      information from Meta’s Ad Library, providing insights into active and
      inactive ad campaigns across Facebook and Instagram. This tool is ideal
      for marketing analysis, competitor research, and understanding ad
      strategies.
  - name: Facebook Pages Details/Posts
    description: ''
  - name: 'Facebook Groups Details/Posts '
    description: ''
  - name: Facebook Download Media
    description: >-
      Download media (images, videos, audio) from Facebook URLs. Returns file
      size in MB and media type.
paths:
  /v1/data/facebook/get_facebook_group_metadata_details:
    get:
      tags:
        - 'Facebook Groups Details/Posts '
      summary: Get Facebook Group Metadata Details
      description: >-
        Get group metadata details (name, id, url, image). Use group_id to
        retrieve specific group information.
      operationId: Get_Facebook_Group_Metadata_Details
      parameters:
        - name: group_id
          in: query
          required: false
          schema:
            type: string
        - name: link
          in: query
          required: false
          schema:
            type: string
            default: https://www.facebook.com/groups/gieldagryplanszowe
      responses:
        '200':
          description: Response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Get_facebook_get_facebook_group_metadata_details_Response
              example:
                id: '1439220986320043'
                title: Giełda GRY Planszowe
                description: >-
                  Sprzedajemy, kupujemy, wymieniamy gry planszowe, karciane,
                  bitewne etc. i wszystko co z nimi związane.


                  Grupa nie akceptuje postów informacyjnych, porad,...
                url: https://www.facebook.com/groups/gieldagryplanszowe/
                image_alt: Giełda GRY Planszowe
                image: >-
                  https://scontent-fra3-1.xx.fbcdn.net/v/t39.30808-6/464703294_1644818736383102_6825067784690758424_n.jpg?stp=dst-jpg_tt6&cstp=mx851x315&ctp=s851x315&_nc_cat=108&ccb=1-7&_nc_sid=0b1479&_nc_ohc=sO-iwpi6W7EQ7kNvwG3Qzt9&_nc_oc=Adk5KAZgmtHRw5ICKbuqWwR317kp5pr_ZZ_Xss4qiJJUU-rTBv28QgL1FnKSs_5I2Dk&_nc_zt=23&_nc_ht=scontent-fra3-1.xx&_nc_gid=oPySbmS0AOLxlT_EU1EV2w&oh=00_AfXSayK0swBus4f_Ls8qwsQW_qYlavMj8rlRp8bpal0Jdw&oe=68A12428
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Get_facebook_get_facebook_group_metadata_details_Response:
      type: object
      properties:
        id:
          type: string
        title:
          type: string
        description:
          type: string
        url:
          type: string
        image_alt:
          type: string
        image:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Bearer token. Pass your agntdata API key as: Authorization: Bearer
        agnt_live_...

````