Skip to main content
GET
/
v1
/
me
Get Current Organization
curl --request GET \
  --url https://api.example.com/v1/me
{
  "object": "identity",
  "org_id": "orgn_Lb1dE5fG",
  "org_name": "Acme Legal Tech",
  "plan": "pro",
  "api_key": {
    "id": "key_Mc2eF6gH",
    "prefix": "sig_live_7kMn",
    "scopes": ["trademarks:read", "search:read", "portfolios:manage", "events:read"],
    "rate_limit_tier": "tier-1-reads"
  },
  "livemode": true,
  "request_id": "req_tM9dE5fG"
}

Overview

Returns the profile of the organization associated with the current API key. Use this to verify authentication, check your plan tier, and retrieve your organization ID. This is typically the first call made when setting up an integration to confirm the API key is valid.

Response

response
object
{
  "object": "identity",
  "org_id": "orgn_Lb1dE5fG",
  "org_name": "Acme Legal Tech",
  "plan": "pro",
  "api_key": {
    "id": "key_Mc2eF6gH",
    "prefix": "sig_live_7kMn",
    "scopes": ["trademarks:read", "search:read", "portfolios:manage", "events:read"],
    "rate_limit_tier": "tier-1-reads"
  },
  "livemode": true,
  "request_id": "req_tM9dE5fG"
}

Code Examples

curl https://api.signa.so/v1/me \
  -H "Authorization: Bearer sig_live_xxxxxxxxxxxx"

Errors

StatusTypeDescription
401unauthorizedMissing or invalid API key
429rate_limitedToo many requests