Documentation Menu

/facepop/all Endpoint

This endpoint returns an array of all facepop objects that are associated with your API key.

Endpoint Details

Request

POST /facepop/all

This endpoint requires a POST request with your API key.

Parameters

Required Parameters:

APIKey

Your unique API key to authenticate the request.

No other parameters are required for this endpoint.

Response

Status: 200 OK

This endpoint always returns a 200 OK status when successful.

Response Body:

[
  {
    // FacePop object 1
  },
  {
    // FacePop object 2
  },
  // ... more FacePop objects
]

The response is an array of FacePop objects. To see the structure of a FacePop object, visit the FacePop object documentation page.

Example Request

Using cURL:

curl -X POST https://api.answerly.io/facepop/all \
  -H "Content-Type: application/json" \
  -d '{
    "APIKey": "your-api-key-here"
  }'