Check if Site is Using Fera

How to check if a site/store is using Fera or not.

To check if a site/store is using Fera you can perform a store search operation like this:

Search Fera Stores

get

Retrieve a list of stores that match the search query. This is useful to determine if a store is using Fera or not.

Authorizations
Query parameters
pageinteger · int32 · min: 1Optional

Current page number, if pagination used.

page_sizeinteger · int32 · min: 1Optional

Number of items per page.

limitinteger · int32 · min: 1 · max: 100Optional

Maximum number of items retrieved.

offsetinteger · int32Optional

Starting position of items request query.

domainstringRequired

Domain or URL of the shop/store.

Example: example.myshopify.com
Responses
200
Successful response
application/json
get
GET /v3/partners/stores/search HTTP/1.1
Host: api.fera.ai
Accept: */*
{
  "data": [
    {
      "id": "fSto_12ab",
      "name": "Bluth Building Co",
      "platform": "shopify",
      "url": "https://www.example.com",
      "code": "bluth",
      "country_code": "US",
      "public_key": "pk_abcd123",
      "external_id": "bluth-co.myshopify.com",
      "language": "en-US",
      "logo_url": "https://uploads.fera.ai/brand/logo.svg",
      "icon_url": "https://uploads.fera.ai/brand/icon.svg",
      "counts": {
        "reviews": 5,
        "media": 3
      },
      "rating": {
        "count": 5,
        "average": 4.5
      },
      "created_at": "2022-11-06T19:38:13.645Z",
      "updated_at": "2022-11-06T19:38:13.645Z"
    }
  ],
  "meta": {
    "page": 1,
    "page_size": 10,
    "page_count": 3,
    "limit": 10,
    "offset": 0,
    "total_count": 123
  }
}

Code Examples

curl --request GET \
     --url https://api.fera.ai/v3/partners/stores/search?domain=example.com \
     --header 'Api-Key: YOUR_PARTNER_API_KEY'
# See JSON response examples above

Last updated

Was this helpful?