Fera Partner Docs
  • Become a Partner
  • 🤝Partner Portal
    • Managed Stores
    • Apps
      • Creating an App
      • Testing App
      • Authenticating App
      • Publishing App
      • Managing App
    • Referrals
      • Referral Link
      • Tracking Referrals
      • Getting Paid
    • Team
  • Partner Badges
    • Works With Fera
    • Trusted Partner Badges
  • 👷Agencies
    • Become Agency Partner
    • Setting up a new store
    • Creating custom storefronts
  • 🧑‍💻Apps & Platforms
    • Become App/Integration Partner
    • SEO Apps
    • Shipping Apps
    • Support Apps
    • Messaging Apps
      • Requesting Reviews
    • Page Builder Apps
    • Partner Resources
  • 🖌️Theme Developers
    • Become Theme Partner
    • Shopify Themes
      • Display Ratings
      • Display Reviews
        • By Customer
    • SEO Schema Support
  • 🎬Content Creators
    • Join Affiliate Program
    • Referral Program
    • Brand Assets
  • 🧑‍💻Developers
    • Visit Developer Center
    • Partner API
      • List Reviews
      • Retrieve Product Ratings
      • Check if Site is Using Fera
      • Other API Endpoints
Powered by GitBook
On this page

Was this helpful?

  1. Developers
  2. Partner API

Check if Site is Using Fera

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

PreviousRetrieve Product RatingsNextOther API Endpoints

Last updated 2 years ago

Was this helpful?

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

Search Fera Stores

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
require 'httparty'
HTTParty.get(
  'https://api.fera.ai/v3/partners/stores/search?domain=example.com', 
  headers: { 'Api-Key' => 'YOUR_PARTNER_API_KEY' }
);
# See JSON response examples above
🧑‍💻

Search for a Store

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
400
Bad request
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
  }
}
  • Search Fera Stores
  • GETSearch for a Store
  • Code Examples