> ## Documentation Index
> Fetch the complete documentation index at: https://docs.socq.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Marketplace Location Search

> Find Facebook Marketplace locations and coordinates.

# Marketplace Location Search

Use a city, region, or place name to find location coordinates for Marketplace Search.

This endpoint does not accept `results_limit`. A task saves every location candidate returned for the query.

## Request Example

```json theme={"system"}
{
  "query": "Austin"
}
```

## Use with MCP

| Interface      | Value                                                                  |
| -------------- | ---------------------------------------------------------------------- |
| REST           | `POST /v1/facebook-marketplace/location-search`                        |
| Compact MCP    | `socq_execute` with `endpoint: "facebook-marketplace/location-search"` |
| Typed MCP      | `socq_facebook_marketplace_location_search`                            |
| Exact-tool URL | `https://api.socq.ai/mcp?tools=facebook_marketplace_location_search`   |
| CLI            | `socq facebook-marketplace location-search`                            |

Use the JSON request body above as the nested `input` object for `socq_execute`, or pass the same fields directly to the typed tool. Typed tools also accept `_wait_seconds`, `_result_limit`, and `_idempotency_key`.

<Info>
  A successful collection returns a `task_id`. Continue with `socq_get_task` until the task succeeds, then read normalized records from `results.items`.
</Info>

See [MCP quickstart](/integrations/mcp) for the complete submission and polling flow.

## Completed Task Response

```json theme={"system"}
{
  "code": 200,
  "data": {
    "task_id": "A1B2C3D4E5F6G7H8",
    "status": "succeeded",
    "public_id": "facebook-marketplace/location-search",
    "result_count": 1,
    "credits_amount": 0.3,
    "results": {
      "limit": 50,
      "next_cursor": null,
      "has_more": false,
      "items": [{
        "id": "106224666074625",
        "platform": "facebook-marketplace",
        "resource": "location-search",
        "type": "location",
        "url": null,
        "name": "Austin, Texas",
        "text": "City",
        "metrics": {},
        "media": [],
        "created_at": null,
        "collected_at": "2026-07-18T10:30:00",
        "extra": {
          "search_query": "Austin",
          "address": [],
          "city": "Austin",
          "postal_code": "78701",
          "latitude": 30.2677,
          "longitude": -97.7475
        }
      }]
    }
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/facebook-marketplace/location-search
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-063d1c96173a
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/facebook-marketplace/location-search:
    post:
      tags:
        - facebook-marketplace
      summary: Facebook Marketplace Location Search API
      description: Facebook Marketplace Location Search API
      operationId: socq_facebook_marketplace_location_search
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                query:
                  type: string
                  minLength: 1
                  description: Search query.
              required:
                - query
      responses:
        '200':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentSubmitResponse'
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  schemas:
    AgentSubmitResponse:
      type: object
      properties:
        code:
          type: integer
          const: 200
        data:
          type: object
          properties:
            task_id:
              type: string
            status:
              type: string
            created_time:
              type:
                - string
                - 'null'
            idempotent_replay:
              type: boolean
          required:
            - task_id
            - status
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````