OnlyFans API
Public profiles

Search Profiles

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

GET
/api/search
AuthorizationBearer <token>

Get your API Key from OnlyFansAPI Console - https://app.onlyfansapi.com/api-keys

In: header

Query Parameters

querystring

Query for full text search in username, display name, bio

limit?string

The number of profiles to return. For each returned profile we charge your account 1 credit. Default: 10

min_subscribe_price?string

Minimum subscribe price

max_subscribe_price?string

Maximum subscribe price

location?string

Location

query?string

Must be at least 3 characters.

min_subscribe_price?number

Must be at least 0.00.

max_subscribe_price?number

Must be at least 0.00.

location?string
website?string
instagram?string
tiktok?string
limit?integer

Must be at least 1. Must not be greater than 100.

Response Body

curl -X GET "https://app.onlyfansapi.com/api/search?query=milf&limit=10&min_subscribe_price=0&max_subscribe_price=1000000&location=New+York" \
  -H "Content-Type: application/json" \
  -d '{}'
{
  "data": [
    {
      "id": 123,
      "onlyfans_id": "123",
      "stats_updated_at": "2025-01-01T01:01:01+00:00",
      "username": "username",
      "name": "Name",
      "avatar_url": "https://public.onlyfans.com/files/6/6d/6db/.../avatar.jpg",
      "header_url": "https://public.onlyfans.com/files/a/ai/aia/.../123/header.jpg",
      "subscribe_price": 0,
      "min_subscribe_price": 0,
      "posts_count": 209,
      "photos_count": 155,
      "videos_count": 279,
      "audios_count": 0,
      "favorites_count": 224,
      "favorited_count": 2576,
      "subscribers_count": null,
      "is_verified": true,
      "website": "https://example.com",
      "location": "Location",
      "wishlist": null,
      "about": "About text",
      "last_seen_at": "2025-01-01T01:01:01+00:00",
      "is_performer": true,
      "is_real_performer": true,
      "is_adult_content": true,
      "created_at": "2025-01-01T01:01:01+00:00",
      "updated_at": "2025-01-01T01:01:01+00:00",
      "bundles": null,
      "gender": "andy",
      "instagram": null,
      "twitter": null,
      "tiktok": null,
      "facebook": null,
      "promotions": null,
      "join_date": "2025-01-01T01:01:01+00:00",
      "fansly": null,
      "pornhub": null,
      "manyvids": null,
      "browsable": true
    }
  ],
  "_pagination": {
    "total_results": 10000,
    "next_page_url": "https://app.onlyfansapi.com/api/search?page=2"
  },
  "_meta": {
    "_credits": {
      "used": 1,
      "balance": 115530,
      "note": "Always"
    },
    "_cache": {
      "is_cached": false,
      "note": "Cache disabled for this endpoint"
    },
    "_rate_limits": {
      "limit_minute": 1000,
      "limit_day": 50000,
      "remaining_minute": 998,
      "remaining_day": 49998
    }
  }
}