# Linked Panda Geo ID Lookup

> Linked Panda Geo ID Lookup is a paid API for AI agents from api.linkedpanda.com, paid per call via x402, $0.01/call, status healthy (last checked 2026-09-15, last successful call 2026-09-04).

Resolves a geographic query to a LinkedIn geo ID used for targeting and filtering LinkedIn data by location.

## Facts

- Endpoint: POST https://api.linkedpanda.com/agent/v1/geo-id
- Price: $0.01/call
- Payment: x402
- Status: healthy
- Last checked: 2026-09-15
- Last successful call: 2026-09-04
- Success rate: 100% of calls made through Zero
- Rating: 4.7 / 5 from 1 review
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/linked-panda-geo-id-lookup-b9bae9df
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kuAbUwBRAKa5pnJTqKyzr

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability linked-panda-geo-id-lookup-b9bae9df -d '<json body>'
```

Example prompt: Can you look up the LinkedIn geo ID for 'San Francisco Bay Area' so I can use it to filter and score B2B leads in that region?

## When to prefer this

Use this endpoint when you need to resolve a human-readable location name (city, region, country) into a LinkedIn geo ID for use in downstream lead filtering, ICP scoring, or CRM routing workflows on the Linked Panda platform. Prefer this over generic geocoding APIs when the output must be a LinkedIn-native geo identifier.

## Known failure modes

- Empty results array if the location query string does not match any known LinkedIn geography
- Pagination token null when no further pages exist
- Malformed or overly vague query strings may return zero results
- Payment failure if USDC balance is insufficient for the $0.01 per-call fee
- HTTP 402 if x402 payment header is missing or invalid

## How this service works

LinkedIn GeoID lookup

## Output

Returns a paginated list of LinkedIn geo ID results matching the query, including total element count, page size, page number, and a pagination token for fetching subsequent pages.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "query": {
   "type": "string"
  },
  "requestContext": {
   "type": "object",
   "properties": {
    "requestId": {
     "type": "string"
    },
    "userIntent": {
     "type": "string"
    },
    "promptSummary": {
     "type": "string"
    }
   },
   "additionalProperties": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": [],
  "pagination": {
   "pageSize": 0,
   "pageNumber": 1,
   "totalElements": 0,
   "paginationToken": null
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/linked-panda-geo-id-lookup-b9bae9df/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.linkedpanda.com](https://www.zero.xyz/host/api.linkedpanda.com/llms.txt)
