{
  "openapi": "3.0.0",
  "info": {
    "title": "Facebook Get Profile ID API (V1)",
    "version": "1.0.0",
    "description": "Retrieve the unique Facebook profile ID from a given profile URL."
  },
  "paths": {
    "/api/facebook/get-profile-id/v1": {
      "get": {
        "tags": [
          "Facebook"
        ],
        "summary": "Get Profile ID",
        "description": "Retrieve the unique Facebook profile ID from a given profile URL.",
        "operationId": "getProfileIdV1",
        "parameters": [
          {
            "name": "token",
            "in": "query",
            "description": "User security token for API access authentication.",
            "required": true,
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "url",
            "in": "query",
            "description": "The path part of the Facebook profile URL. Do not include `https://www.facebook.com`. Example: `/people/To-Bite/pfbid021XLeDjjZjsoWse1H43VEgb3i1uCLTpBvXSvrnL2n118YPtMF5AZkBrZobhWWdHTHl/`",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "default": {
            "description": "default response",
            "content": {
              "application/json": {}
            }
          }
        },
        "x-order": "30001010"
      }
    }
  },
  "components": {}
}