> ## 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 Page Details

> This endpoint is designed to extract essential data from Facebook pages. By simply entering the page URL and clicking the "Test Endpoint" button, users can quickly gather the desired information.
📰 Ad Page ID, 🔍 Ad Status, 🏠 Address, 👤 Bio, ⏰ Business Hours, 💰 Business Price, 🛋️ Business Services, 📂 Category, 👥 Confirmed Owner Label, 📅 Creation Date, ✉️ Email, 👥 Followers Display, 📸 Image, 🔗 Image Alt, 👍 Likes Count, 🗺️ Maps Address, 📞 Phone, ⭐ Rating, 📊 Rating Count, 🏷️ Title, 🌐 URL, 🌐 Website



## OpenAPI

````yaml /openapi/facebook.openapi.json get /v1/data/facebook/get_facebook_pages_details_from_link
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_pages_details_from_link:
    get:
      tags:
        - Facebook Pages Details/Posts
      summary: Get Facebook Page Details
      description: >-
        This endpoint is designed to extract essential data from Facebook pages.
        By simply entering the page URL and clicking the "Test Endpoint" button,
        users can quickly gather the desired information.

        📰 Ad Page ID, 🔍 Ad Status, 🏠 Address, 👤 Bio, ⏰ Business Hours, 💰
        Business Price, 🛋️ Business Services, 📂 Category, 👥 Confirmed Owner
        Label, 📅 Creation Date, ✉️ Email, 👥 Followers Display, 📸 Image, 🔗
        Image Alt, 👍 Likes Count, 🗺️ Maps Address, 📞 Phone, ⭐ Rating, 📊
        Rating Count, 🏷️ Title, 🌐 URL, 🌐 Website
      operationId: Get_Facebook_Page_Details
      parameters:
        - name: page_section
          in: query
          required: false
          schema:
            type: string
          description: >-
            Page section to scrape: **default** (main page) or **about** (About
            section)
        - name: show_verified_badge
          in: query
          required: false
          schema:
            type: boolean
            default: 'false'
        - name: proxy_country
          in: query
          required: false
          schema:
            type: string
        - name: profile_id
          in: query
          required: false
          schema:
            type: string
          description: Facebook profile ID. Used only if `link` is not provided.
        - name: exact_followers_count
          in: query
          required: false
          schema:
            type: boolean
            default: 'true'
          description: |-
            Retrieve exact follower count.

            FYI: This works only with **public** pages.
        - name: link
          in: query
          required: false
          schema:
            type: string
            default: https://www.facebook.com/EngenSA
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/Get_facebook_get_facebook_pages_details_from_link_Response
        '400':
          description: Bad request
        '401':
          description: Unauthorized - invalid API key
        '429':
          description: Rate limit exceeded
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Get_facebook_get_facebook_pages_details_from_link_Response:
      type: object
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Bearer token. Pass your agntdata API key as: Authorization: Bearer
        agnt_live_...

````