Social metrics API for developers

A developer-friendly REST API for social media metrics across Instagram, TikTok, YouTube, Facebook, and more. Query them all in a single request, with simple authentication, predictable JSON responses, and affordable pricing.

/api/v1/resources/search
$ curl -X POST https://metrika.run/api/v1/resources/search \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "resources": [
      {"platform": "instagram", "type": "account", "identifier": "natgeo"}
    ]
  }'

Clean, predictable responses

Every API response follows the same structure. No surprises, no unnecessary nesting.

200 OK
{
  "data": [
    {
      "platform": "instagram",
      "type": "account",
      "identifier": "natgeo",
      "status": "available",
      "metrics": {
        "followers": {
          "value": 284000000,
          "status": "available"
        },
        "following": {
          "value": 74,
          "status": "available"
        }
      }
    }
  ]
}

Each metric includes a value and status field. Bulk requests return multiple results in a single response.

Why Metrika

A focused utility, not a bloated platform.

Simple API

Single endpoint. POST JSON in, JSON out. No SDK required.

Fast Integration

Authenticate with a Bearer token and start querying in minutes.

Bulk Requests

Query up to 10 accounts in a single request. Duplicates are automatically removed.

Free to Start

500 requests a month, free, with no credit card. A paid tier is on the way for heavier use.

Supported platforms

All major platforms supported out of the box.

Platform Status
Instagram Available
Facebook Available
LinkedIn Available
TikTok Available
YouTube Available
X / Twitter Available
Threads Available

Get started in minutes

Three steps from zero to your first metric.

1

Create account

Sign up and generate your API token from the dashboard.

2

Make requests

Send JSON requests to /api/v1/resources/search with your Bearer token.

3

Retrieve metrics

Receive structured metric data instantly. Integrate into your own apps.

Free tier

Available now
Free

Everything you need to start building, on the house.

  • 500 API requests per month
  • Full API access
  • All supported datapoints
  • Developer dashboard
  • API token management
  • No credit card required

Paid Tier

Coming Soon
€4.99 /month

More headroom for when you scale up.

  • Everything in Free
  • Higher monthly API request quota

Additional premium features may be added over time.

Documentation

Everything you need to integrate: authentication, endpoints, examples in curl, JavaScript, and Python.

Frequently asked questions

What platforms do you support?

Facebook, Instagram, LinkedIn, Threads, TikTok, X/Twitter, and YouTube are all supported today. For LinkedIn, both personal profiles and company pages are supported. We're actively working on adding more platforms.

What metrics are available?

Follower count, following count, and verified status. Availability varies by platform — see the docs for the full breakdown. We're actively expanding the range of available datapoints.

How does authentication work?

API requests use Bearer token authentication. Generate tokens from your dashboard and include them in the Authorization header.

What are the rate limits?

We currently cap at 100 requests per 60 seconds. Exceed the limit and you'll receive a 429 Too Many Requests response.

What is the pricing?

The free tier is here to stay: 500 requests per month, no credit card required. A paid tier is planned for heavier use. No surprise usage charges, no hidden fees.

How do I check service status?