---
title: "Search Profiles"
method: GET
path: "/api/search"
tags: ["Public Profiles"]
---

# Search Profiles

`GET /api/search`

Full-text search for profiles with filters for pricing, free trials, location, media count and more.

## Query parameters

- `query` string — Query for full text search in username, display name, bio. Must be at least 3 characters.
- `min_subscribe_price` number — Filter by minimum subscribe price. Must be at least 0.00.
- `max_subscribe_price` number — Filter by maximum subscribe price. Must be at least 0.00.
- `location` string — Filter by location.
- `website` string — Filter by website.
- `instagram` string — Filter by Instagram username.
- `tiktok` string — Filter by TikTok username.
- `limit` integer — The number of profiles to return. For each returned profile we charge your account 1 credit. Default: `10`. Must be at least 1. Must not be greater than 100.
- `cursor` string, nullable — Cursor for pagination. Use the `next_cursor` from the previous response to get the next page of results.
- `sort` 'likes' | 'photos' | 'videos' | 'subscribers' | 'subscribe_price' | 'min_subscribe_price' | 'join_date' | 'last_seen' — Field to sort by. ⭐️ Only available on the Pro and Enterprise plan.
- `sortDirection` 'desc' | 'asc' — Direction for sorting. `desc` - highest value first. `asc` - lowest value first.
- `filter` object
- `filter.gender` 'female' | 'male' | 'trans' | 'trans_ftm' | 'trans_mtf' | 'couple' — Filter by gender (available: `female`, `male`, `trans`, `trans_ftm` (Female-to-Male), `trans_mft` (Male-to-Female), `couple`). ⭐️ Only available on the Pro and Enterprise plan.

## Response `200`

- object
  - `data` object[]
    - `ofapi_gender` string
    - `ofapi_gender_confidence` number
    - `onlyfans_id` integer
    - `stats_updated_at` string
    - `username` string
    - `name` string
    - `avatar_url` string
    - `header_url` string
    - `subscribe_price` integer
    - `min_subscribe_price` integer
    - `posts_count` integer
    - `photos_count` integer
    - `videos_count` integer
    - `audios_count` integer
    - `favorites_count` integer
    - `favorited_count` integer
    - `subscribers_count` string, nullable
    - `is_verified` boolean
    - `website` string
    - `location` string
    - `wishlist` string, nullable
    - `about` string
    - `last_seen_at` string, nullable
    - `is_performer` boolean
    - `is_real_performer` boolean
    - `is_adult_content` boolean
    - `bundles` string, nullable
    - `instagram` string, nullable
    - `twitter` string, nullable
    - `tiktok` string, nullable
    - `facebook` string, nullable
    - `promotions` string, nullable
    - `join_date` string
    - `fansly` string, nullable
    - `pornhub` string, nullable
    - `manyvids` string, nullable
  - `_pagination` object
    - `total_results` integer
    - `next_cursor` string
    - `next_page_url` string
  - `_meta` object
    - `_credits` object
      - `used` integer
      - `balance` integer
      - `note` string
    - `_cache` object
      - `is_cached` boolean
      - `note` string
    - `_rate_limits` object
      - `limit_minute` integer
      - `limit_day` integer
      - `remaining_minute` integer
      - `remaining_day` integer

---

[API](https://skmtc.net/onlyfansapi/apis/onlyfans-api.md) · [All operations](https://skmtc.net/onlyfansapi/apis/onlyfans-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/onlyfansapi/onlyfans-api/revisions/4a99d36f28a3/schema)
